-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (99 loc) · 3.6 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
<!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>Thomps - Ecommerce Website</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/fontawesome.min.css" integrity="sha384-QYIZto+st3yW+o8+5OHfT6S482Zsvz2WfOzpFSXMF9zqeLcFV0/wlZpMtyFcZALm" crossorigin="anonymous">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="header">
<a href="#" id="logo" alt="logo">Thonstore<span>.</span></a>
<div>
<ul id="navbar">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="shop.html">Loja</a></li>
<li><a href="about.html">Descontos</a></li>
<li><a href="contact">Contacto</a></li>
<li id="lg-bag"><a href="cart.html"><i class='bx bx-shopping-bag'></i></a></li>
<a href="#" id="close"><i class='bx bx-x'></i></a>
</ul>
</div>
<div id="mobile">
<a href="cart.html"><i class='bx bx-shopping-bag'></i></a>
<i id="bar" class='bx bx-menu'></i>
</div>
</section>
<section id="product1" class="section-p1">
<div class="pro-container">
<div class="pro">
<img src="img/others/house.jpg" alt="">
<div class="des">
<h5>Produtos para Casa</h5>
</div>
</div>
<div class="pro">
<img src="img/others/kitchen.jpg" alt="">
<div class="des">
<h5>Produtos para Cozinha</h5>
</div>
</div>
<div class="pro">
<img src="img/others/books.jpg" alt="">
<div class="des">
<h5>Livros</h5>
</div>
</div>
<div class="pro">
<img src="img/others/pets.jpg" alt="">
<div class="des">
<h5>Produtos para Pets</h5>
</div>
</div>
</section>
<section id="banner3" class="section-p1">
<div class="banner-box">
<h2>SEASONAL SALE</h2>
<h3>Winter Collection - 50% OFF</h3>
</div>
<div class="banner-box banner-box2">
<h2>NEW FOOTWEAR COLLECTION</h2>
<h3>Spring / Summer 2023</h3>
</div>
<div class="banner-box banner-box3">
<h2>T-SHIRTS</h2>
<h3>New Trendy Prints</h3>
</div>
</section>
<section id="newsletter" class="section-p1 section-m1">
<div class="newstext">
<h4>Sign Up For Newsletters</h4>
<p>Get E-mails updates about our latest shop and <span>special offers.</span></p>
</div>
<div class="form">
<input type="text" placeholder="Your email address">
<button class="normal">Sign Up</button>
</div>
</section>
<footer class="section-p1">
<div class="col">
<a href="#" id="logo" alt="logo">Thonstore<span>.</span></a>
<div class="follow">
<div class="icon">
<i class='bx bxl-facebook'></i>
<i class='bx bxl-instagram'></i>
<i class='bx bxl-pinterest-alt'></i>
<i class='bx bxl-youtube'></i>
</div>
</div>
</div>
<div class="copyright">
<p>© 2024 Thonstore</p>
</div>
</footer>
<script src="js/script.js"></script>
</body>
</html>