-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.html
More file actions
82 lines (78 loc) · 2.79 KB
/
store.html
File metadata and controls
82 lines (78 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Shoe Retailer</title>
<link rel="stylesheet" href="css/shop.css">
</head>
<body>
<header>
<div class="top-bar">
<div class="search-bar">
<input type="text" placeholder="Search">
<button class="search-button">Search</button>
</div>
<div class="logo">
<img src="images/shoe.png" alt="Your Logo">
</div>
<div class="user-icons">
<a href="#" class="profile-icon"><img src="images/user.png" alt="Profile"></a>
<a href="#" class="wishlist-icon"><img src="images/wishlist.png" alt="Wishlist"></a>
<a href="#" class="cart-icon"><img src="images/shopping-cart.png" alt="Cart"></a>
</div>
</div>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Catalog</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Welcome to Your Shoe Retailer</h1>
<p>Discover the latest trends in footwear.</p>
<a href="#" class="btn">Shop Now</a>
</section>
<section class="featured-products">
<h2>Featured Products</h2>
<div class="product-carousel">
<div class="product">
<img src="images/mike.png" alt="Product 1">
<h3>Mike 3000s</h3>
<p></p>
<p class="price">$89</p>
<a href="#" class="btn">Buy Now</a>
</div>
<!-- Repeat this product block for additional featured products -->
<div class="product">
<img src="images/astroboy.png" alt="Product 2">
<h3>Astroboy boots *REAL*</h3>
<p></p>
<p class="price">$99.99</p>
<a href="#" class="btn">Buy Now</a>
</div>
<div class="product">
<img src="images/kachow.png" alt="Product 3">
<h3>Kachow slides</h3>
<p></p>
<p class="price">$129.99</p>
<a href="#" class="btn">Buy Now</a>
</div>
</div>
</section>
<section class="newsletter">
<h2>Subscribe to Our Newsletter</h2>
<p>Stay updated with the latest shoe trends and offers.</p>
<form>
<input type="email" placeholder="Your Email">
<button type="submit" class="btn">Subscribe</button>
</form>
</section>
<footer>
<p>© 2023 Your Shoe Retailer</p>
</footer>
</body>
</html>