-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
172 lines (165 loc) · 4.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.6.3/css/all.css"
integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/styles.css" />
<title>EG-MARKET</title>
</head>
<body>
<!-- Logo -->
<header id="header">
<div class="container">
<div class="logo">
<a href="#"><img src="./img/logo.jpg" alt=""/></a>
</div>
</div>
</header>
<!-- end Logo -->
<!-- NavBar -->
<nav id="navbar">
<div class="container">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Categories</a></li>
<li><a href="#">Blog</a></li>
</ul>
</div>
</nav>
<!-- end NavBar -->
<!-- Search Bar -->
<section id="search-bar">
<div class="container">
<div class="search">
<form>
<div class="form-group">
<input
type="text"
name="search"
placeholder="What are you looking for?"
/>
</div>
<div class="form-group">
<select name="categories" id="categories">
<option value="electronic">Electronics</option>
<option value="books">Books</option>
<option value="cloths">Cloths</option>
<option value="shoes">Shoes</option>
</select>
<i class="fas fa-search"></i>
</div>
</form>
</div>
</div>
</section>
<!-- end search bar -->
<div class="container">
<section id="slide">
<img src="./img/egmarket7.jpg" alt="">
</section>
</div>
<!-- Section: showcase -->
<section id="showcase">
<div class="container">
<div class="showcase">
<h4 class="heading">FEATURED LISTINGS</h4>
<div class="showcase-content">
<div class="showcase-items">
<img
src="./img/egmarket1.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Nike Shoes</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket2.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Jacket</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket3.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Cloths</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket4.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Nike Shoes</a></h4>
</div>
</div>
</div>
</div>
</section>
<!-- Section: showcase -->
<section id="showcase">
<div class="container">
<div class="showcase">
<div class="showcase-content">
<div class="showcase-items">
<img
src="./img/egmarket8.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Nike Shoes</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket9.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Nike Shoes</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket10.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">Samsung S10</a></h4>
</div>
<div class="showcase-items">
<img
src="./img/egmarket11.jpg"
alt=""
width="250px"
height="250px"
/>
<h4><a href="page.html">PS 4 Fifa</a></h4>
</div>
</div>
</div>
</div>
</section>
<footer id="footer">
<div class="container">
<p>Copyright © 2019 EG-MARKET</p>
</div>
</footer>
</body>
</html>