-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
132 lines (131 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flipkart</title>
<link rel="stylesheet" href="css/style.css">
</head>
<header>
<nav>
<div class="logo">
<img src="img/logo.png" alt="flipkart">
</div>
<div class="logo2">
<p>Explore <span class="pcolor">Plus</span><img src="img/plus.png" alt="plus"></p>
</div>
<div class="search">
<input type="text" placeholder="Search for products, brands and more">
</div>
<div class="btn">
<button>Login</button>
</div>
<ul>
<li>Become a Seller</li>
<li>More</li>
<li>Cart</li>
</ul>
</nav>
</header>
<body>
<div class="container">
<div class="slider">
<img src="https://source.unsplash.com/1300x400/?shopping" alt="" />
</div>
<div class="card">
<h2>Best of Electronics</h2>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Laptop" alt="" />
<ul class="items">
<h4>12th Gen Laptops</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Mobile" alt="" />
<ul class="items">
<h4>Smart Phones</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Computer" alt="" />
<ul class="items">
<h4>Best Computers</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Television" alt="" />
<ul class="items">
<h4>Television</h4>
<p>$10000</p>
</ul>
</div>
</div>
<div class="card">
<h2>Beauty, Food, Toys & More</h2>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?makeup" alt="" />
<ul class="items">
<h4>Make-up kit</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Foods" alt="" />
<ul class="items">
<h4>Best Quality Foods</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Toys" alt="" />
<ul class="items">
<h4>Top Class Toys</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Groceries" alt="" />
<ul class="items">
<h4>Retail Price Groceries</h4>
<p>$10000</p>
</ul>
</div>
</div>
<div class="card">
<h2>Best Value Fashion</h2>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Men clothes" alt="" />
<ul class="items">
<h4>Men Wear</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Women Clothes" alt="" />
<ul class="items">
<h4>Women Wear</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Uniforms" alt="" />
<ul class="items">
<h4>Uniforms</h4>
<p>$10000</p>
</ul>
</div>
<div class="card-items">
<img src="https://source.unsplash.com/200x150/?Children clothes" alt="" />
<ul class="items">
<h4>Best Price childrens Wear</h4>
<p>$10000</p>
</ul>
</div>
</div>
</div>
</body>
</html>