forked from Integrify-Finland/int-fs7-css-ecommerce-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (147 loc) · 5.85 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
<!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">
<meta name="description" content="online shopping">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" />
<title>Online shopping</title>
</head>
<body>
<div class="container">
<header>
<a href="index.html"><i class="fa-solid fa-house"></i></a>
<a href="#kids">kids</a>
<a href="#women">Women</a>
<a href="#men">Men</a>
<a href="signup.html">Signup</a>
<a href="login.html"><i class="fa-solid fa-user"></i>  login</a>
<a href="cart.html"><i class="fa-solid fa-cart-shopping"></i>  Cart</a>
</header>
<section>
<div class="animation-image">
<div class="image__text">
<h1 style="font-size:50px">shop with smile</h1>
</div>
<div>
</section>
<main>
<h2 id="kids">kids product</h2>
<section class="main">
<div class="product card">
<img src="images\kid1.jpg" alt="Product 1">
<p>floral T-Shirt<br>350 DKK</p>
<a href="productdetails.html"><button>Add to cart</button></a>
</div>
<div class="product card">
<img src="images\kid2.jpg" alt="Product 1">
<p>Frock<br>200 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\kid3.jpg" alt="Product 1">
<p>Jacket<br>400 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\kid4.jpg" alt="Product 1">
<p>White T-shirt<br>250 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\kid5.jpg" alt="Product 1">
<p>Onesie<br>300 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\kid6.jpg" alt="Product 1">
<p>white T-shirt<br>200 DKK</p>
<button>Add to cart</button>
</div>
</section>
<section>
<h2 id="women">Women</h2>
<section class="main">
<div class="product card">
<img src="images\women1.jpg" alt="Product 1">
<p>Ethnic wear<br>400 DKK</p>
<a href="productdetails.html"><button>Add to cart</button></a>
</div>
<div class="product card">
<img src="images\women2.jpg" alt="Product 1">
<p>Salwar<br>500 Dkk</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\women3.jpg" alt="Product 1">
<p>T-shirt<br> 200 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\women4.jpg" alt="Product 1">
<p>Sweater<br>400 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\women5.jpg" alt="Product 1">
<p>Jacket<br>600 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\women6.jpg" alt="Product 1">
<p>Jacket<br>600 Dkk</p>
<button>Add to cart</button>
</div>
</section>
<section>
<h2 id="men">Men</h2>
<section class="main">
<div class="product card">
<img src="images\men1.jpg" alt="Product 1">
<p>T-Shirt<br>300 DKK</p>
<a href="productdetails.html"><button>Add to cart</button></a>
</div>
<div class="product card">
<img src="images\men2.jpg" alt="Product 1">
<p>Jeans<br>500 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\men3.jpg" alt="Product 1">
<p>Formal wear<br>300 Dkk</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\men1.jpg" alt="Product 1">
<p>T-shirt <br>300 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\men2.jpg" alt="Product 1">
<p>Jeans<br>500 DKK</p>
<button>Add to cart</button>
</div>
<div class="product card">
<img src="images\men3.jpg" alt="Product 1">
<p>Formal wear<br>300 Dkk</p>
<button>Add to cart</button>
</div>
</section>
</main>
<footer>
<div>
Copyright © My Online Store
</div>
<div>
<nav class="footer_media">
<a href="#" target="_blank"><i class="fa-brands fa-facebook footer_icon"></i></a>
<a href="#" target="_blank"><i class="fa-brands fa-youtube footer_icon"></i></a>
<a href="#" target="_blank"><i class="fa-brands fa-twitter footer_icon"></i></a>
</nav>
</div>
</footer>
</div>
</body>
</html>