forked from Mohamed-Sahl/almakinah_project
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
202 lines (199 loc) · 7.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html>
<head>
<title>Caravan</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<header>
<div class="fixed-top">
<nav class="navbar navbar-light bg-light navbar-expand-lg justify-content-between py-0">
<a class="navbar-brand text-secondary px-5 mb-0 h1" href="index.html">
<img src="images/logo-header.png" height="60px">
</a>
<div class="navbar navbar-expand-lg">
<div class="px-5">
<div class="dropdown show">
<a class="btn dropdown-toggle btn-sm color-theme" href="cart.html" role="button" id="dropdownMenuLink" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
My Account
</a>
<div class="dropdown-menu" aria-labelledby="dropdownMenuLink">
<a class="dropdown-item" href="#">Profile</a>
<a class="dropdown-item" href="#">Settings</a>
<a class="dropdown-item" href="#">Sign Out</a>
</div>
</div>
<div class="dropdown">
<a class="btn btn-light btn-sm sign-noshadow" href="#" role="button" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="false"
aria-expanded="false">
Sign in / Join
</a>
<div class="dropdown-menu">
<form class="px-4 py-3">
<div class="form-group">
<label for="exampleDropdownFormEmail1">Email address</label>
<input type="email" class="form-control" id="exampleDropdownFormEmail1" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleDropdownFormPassword1">Password</label>
<input type="password" class="form-control" id="exampleDropdownFormPassword1" placeholder="Password">
</div>
<div class="form-check">
<label class="form-check-label inline p-0" for="dropdownCheck">
Remember me
</label>
<input type="checkbox" class="form-check-input ml-3" id="dropdownCheck">
</div>
<button type="submit" class="btn btn-primary">Sign in</button>
</form>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#">New around here? Sign up</a>
<a class="dropdown-item" href="#">Forgot password?</a>
</div>
</div>
</div>
<a href="cart.html" class="cart-img">
<img src="images/shopping-card.png" width="37px" height="34px">
<span class="badge badge-light cart-number"></span>
</a>
<button id="cart" type="button" class="btn color-theme mx-3">
My Cart
<div>
<a href="cart.html" class="badge badge-light price"></a>
</div>
</button>
</div>
</nav>
</div>
<div class="container-fluid bg-dark margin-header">
<div class="container">
<div class="row justify-content-center">
<div class="col">
<nav class="navbar justify-content-center">
<select id="user-select" class="custom-select color-theme border rounded-0 border-primary">
<option value="categ" selected="true">All Categories</option>
</select>
<form id="search-bar" class="form-inline">
<input id="search-input" class="form-control border rounded-0 " type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-dark btn-outline-secondary btn-sm my-2 my-sm-0 border-0 rounded-0" type="submit" onclick="searchFunction();">
<a href="">
<img src="images/search-icon-white.png" width="30px">
</a>
</button>
</form>
</nav>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<div class="row my-5 justify-content-center">
<div class="col-6">
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block" src="images/book-wide.jpg" alt="First slide">
</div>
<div class="carousel-item">
<img class="d-block" src="images/album-wide.jpg" alt="Second slide">
</div>
<div class="carousel-item">
<img class="d-block" src="images/movies-wide.png" alt="Third slide">
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<div id="products" class="row my-5">
</div>
</div>
</main>
<footer>
<div class="container-fluid border border-top bg-light">
<div class="container">
<div class="row bg-light">
<div class="col-3 mt-4">
<img class="mb-2" src="images/logo.png" alt="" width="150" height="150">
<small class="d-block mb-3 text-muted">© 2017-2018</small>
</div>
<div class="col-3 mt-4">
<h5>My Account</h5>
<ul class="list-unstyled text-small">
<li>
<a class="text-muted" href="#">Cool stuff</a>
</li>
<li>
<a class="text-muted" href="#">My Wish list</a>
</li>
<li>
<a class="text-muted" href="#">Compare</a>
</li>
<li>
<a class="text-muted" href="#">Checkout</a>
</li>
<li>
<a class="text-muted" href="#">Login</a>
</li>
</ul>
</div>
<div class="col-3 mt-4">
<h5>Customer Service</h5>
<ul class="list-unstyled text-small">
<li>
<a class="text-muted" href="#">About Us</a>
</li>
<li>
<a class="text-muted" href="#">Shipping & Returns</a>
</li>
<li>
<a class="text-muted" href="#">Shipping Guide</a>
</li>
<li>
<a class="text-muted" href="#">FAQ</a>
</li>
</ul>
</div>
<div class="col-3 mt-4">
<h5>Stay Connected</h5>
<ul class="list-unstyled text-small">
<li>
<a class="text-muted" href="#">Team</a>
</li>
<li>
<a class="text-muted" href="#">Locations</a>
</li>
<li>
<a class="text-muted" href="#">Privacy</a>
</li>
<li>
<a class="text-muted" href="#">Terms</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="js/jquery-3.3.1.min.js"></script>
<script type="text/javascript" src="js/popper.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/code_5.js"></script>
</body>
</html>