-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (37 loc) · 1012 Bytes
/
Copy pathindex.html
File metadata and controls
44 lines (37 loc) · 1012 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bracelet Shop</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1>My Honey's BeadBox</h1>
<nav>
<a href="index.html">Home</a>
<a href="shop.html">Shop</a>
<a href="cart.html" class="cart-link">
🛒 Cart <span id="cart-count">0</span>
</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<section class="hero">
<h2>Handmade Bracelets You'll Love</h2>
<p>Unique, handcrafted bracelets for every style and occasion.</p>
<a href="shop.html" class="btn">Shop Now</a>
</section>
<h2 class="featured-title">Featured Products</h2>
<div id="featured-grid" class="product-grid"></div>
</main>
<footer>
<p>© 2026 Bracelet Shop — Handcrafted with ❤️</p>
</footer>
<div id="toast"></div>
<script src="js/products.js"></script>
<script src="js/cart.js"></script>
</body>
</html>