-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (65 loc) · 3.3 KB
/
Copy pathindex.html
File metadata and controls
74 lines (65 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="Shop the latest fashion at Tenjiku – clothing, shoes, and accessories at your fingertips." />
<meta name="author" content="Tenjiku Team" />
<title>Tenjiku | Trendy Fashion Online</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Custom CSS -->
<link rel="stylesheet" href="css/index.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom shadow-sm px-4 py-2" aria-label="Main Navigation">
<div class="container-fluid">
<a class="navbar-brand fw-bold text-primary" href="index.html">TENJIKU</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent"
aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarContent">
<form class="d-flex align-items-center gap-2" role="search" aria-label="Product search">
<label for="categorySelect" class="visually-hidden">Select Category</label>
<select id="categorySelect" class="form-select form-select-sm" style="width: auto;">
<option selected>Categories</option>
<option value="clothing">Clothing</option>
<option value="shoes">Shoes</option>
<option value="bags">Bags</option>
</select>
<label for="searchInput" class="visually-hidden">Search Products</label>
<input id="searchInput" type="search" class="form-control form-control-sm" placeholder="Search..." style="width: 160px;" />
<a href="login.html" class="btn btn-sm btn-outline-primary">Login</a>
<a href="cart.html" class="btn btn-sm btn-outline-secondary">Cart</a>
</form>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="container py-5 d-flex flex-column flex-md-row align-items-center justify-content-between gap-4">
<div>
<h1 class="display-5 fw-semibold">Explore Our Latest Collection</h1>
<p class="lead">Discover top-notch fashion apparel and accessories.</p>
<a href="shop.html" class="btn btn-dark btn-lg">Shop Now</a>
</div>
<img src="img\hero.png" class="img-fluid rounded shadow" alt="Stylish bags and shoes" loading="lazy" width="200" height="200" />
<img src="img\hero2.png" class="img-fluid rounded shadow" alt="Stylish bags and shoes" loading="lazy" width="250" height="250" />
</section>
<!-- Featured Products -->
<section class="container py-5">
<h2 class="mb-4">Featured Products</h2>
<div class="row" id="productGrid">
<!-- Product cards will be dynamically inserted by JS -->
</div>
</section>
<!-- Footer -->
<footer class="bg-light text-center text-muted border-top py-3">
<small>© 2025 Tenjiku E-Commerce. All rights reserved.</small>
</footer>
<!-- JS Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="js/index.js" defer></script>
</body>
</html>