-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (103 loc) · 3.87 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
<!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>Ashman Commerce</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css"/>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id="header">
<a href="#"><img src="img/logo.png" alt="" class="logo"></a>
<div>
<ul id="navbar">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#"><i class="fa-solid fa-bag-shopping"></i></a></li>
</ul>
</div>
</section>
<section id="hero">
<h4>Trade-in-offer</h4>
<h2>Super value deals</h2>
<h1>On all products</h1>
<p>Save more with coupons & up to 70% off!</p>
<button>Shop Now</button>
</section>
<section id="feature" class="section-p1">
<div class="feature-box">
<img src="img/features/f1.png" alt="">
<h6>Free shipping</h6>
</div>
<div class="feature-box">
<img src="img/features/f2.png" alt="">
<h6>Free shipping</h6>
</div>
<div class="feature-box">
<img src="img/features/f3.png" alt="">
<h6>Free shipping</h6>
</div>
<div class="feature-box">
<img src="img/features/f4.png" alt="">
<h6>Free shipping</h6>
</div>
<div class="feature-box">
<img src="img/features/f5.png" alt="">
<h6>Free shipping</h6>
</div>
</section>
<section id="product1" class="section-p1">
<h2>Featured Products</h2>
<p>Summer Collection New Modern Design</p>
<div class="pro-container">
<div class="pro">
<img src="img/products/f1.jpg" alt="">
<div class="des">
<span>adidas</span>
<h5>Cartoon Astronaut T-Shirts</h5>
<div class="star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h4>$78</h4>
</div>
<a href="#"><i class="fal fa-basket-shopping"></i></a>
</div>
</div>
</section>
<section id="banner" class="section-m1">
<h4>Repair Services</h4>
<h2>Up to <span>70% Off</span> - All T-Shirts & Accessories</h2>
<button class="normal">Explore More</button>
</section>
<section id="product1" class="section-p1">
<h2>New Arrivals</h2>
<p>Summer Collection New Modern Design</p>
<div class="pro-container">
<div class="pro">
<img src="img/products/f1.jpg" alt="">
<div class="des">
<span>adidas</span>
<h5>Cartoon Astronaut T-Shirts</h5>
<div class="star">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<h4>$78</h4>
</div>
<a href="#"><i class="fal fa-basket-shopping"></i></a>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>