-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
150 lines (143 loc) · 5.39 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
<!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">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="shortcut icon" href="/Images/0.png" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>Botiga</title>
<link rel="stylesheet" href="Style.css">
</head>
<body>
<div class="Menu" id="Top">
<div class="Links">
<ul>
<li><a href="#">Home</a></li>
<li><a href="/Blog.html">Blog</a></li>
<li><a href="/Shop.html">Shop</a></li>
<li><a href="/Contact.html">Contact</a></li>
</ul>
</div>
<div class="Logo">
<p>BOTIGA</p>
</div>
<div class="Icons">
<i class="fa-solid fa-user"></i>
<i class="fa-solid fa-magnifying-glass"></i>
<i class="fa-solid fa-cart-shopping"></i>
</div>
</div>
<!-- ==Flex== -->
<section class="Big">
<div class="Att">
<h1>Headline that grabs<br>people’s attention</h1>
<button class="BTN">SHOP NOW</button>
</div>
</section>
<!-- ==Feature== -->
<section class="Feature">
<div class="Data">
<h3>Featured Collection</h3>
<p>A powerful headline about your product’s features to give focus to your chosen product collection</p>
</div>
<div class="Row">
<div class="Post">
<img src="/Images/C.jpg" alt="">
<div class="Info">
<p>Lorem ipsum, dolor amet consectetur.</p>
<h3>$12.00</h3>
<button class="BTN2">ADD TO CART</button>
</div>
</div>
<div class="Post">
<img src="/Images/H.jpg" alt="">
<div class="Info">
<p>Lorem ipsum, dolor amet consectetur.</p>
<h3>$12.00</h3>
<button class="BTN2">ADD TO CART</button>
</div>
</div>
<div class="Post">
<img src="/Images/K.jpg" alt="">
<div class="Info">
<p>Lorem ipsum, dolor amet consectetur.</p>
<h3>$12.00</h3>
<button class="BTN2">ADD TO CART</button>
</div>
</div>
</div>
</section>
<!-- ============================ -->
<section class="Big-A">
<div class="Att-A">
<h1>Highlited Section</h1>
<p>What differentiates you from the competition? Use this section to talk about it. Don’t forget to talk about the benefits.</p>
<button class="BTN">SHOP NOW</button>
</div>
</section>
<section class="Feature">
<div class="Data">
<h3>Featured Collection</h3>
<p>A powerful headline about your product’s features to give focus to your chosen product collection</p>
</div>
<div class="Row-A">
<div class="Post">
<img src="/Images/A.jpg" alt="">
<P>Beauty Creams</P>
</div>
<div class="Post">
<img src="/Images/B.jpg" alt="">
<P>Beauty Creams</P>
</div>
<div class="Post">
<img src="/Images/D.jpg" alt="">
<P>Beauty Creams</P>
</div>
<div class="Post">
<img src="/Images/F.jpg" alt="">
<P>Beauty Creams</P>
</div>
</div>
</section>
<!-- ==================== -->
<section class="Foot">
<footer>
<div class="Basic">
<h3>BOTIGA</h3>
<P>Give your customers insight into your product collection.</P>
</div>
<div class="Qlik">
<h3>Quick Links</h3>
<ul>
<lo><a href="">Home</a></lo>
<lo><a href="">Blog</a></lo>
<lo><a href="">Shop</a></lo>
<lo><a href="">Contact</a></lo>
</ul>
</div>
<div class="About">
<h3>About</h3>
<ul>
<lo><a href="">Shipping</a></lo>
<lo><a href="">Terms</a></lo>
<lo><a href="">Policy</a></lo>
</ul>
</div>
</footer>
<div class="Last">
<div class="Icon">
<i class="fa-brands fa-facebook"></i>
<i class="fa-brands fa-instagram"></i>
<i class="fa-brands fa-twitter"></i>
</div>
<div class="Copy">
<p>© 2022 Botiga. Proudly powered by <a href="#">BOTIGA</a></p>
</div>
</div>
</section>
</body>
</html>