-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
34 lines (28 loc) · 875 Bytes
/
home.html
File metadata and controls
34 lines (28 loc) · 875 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SPORTSMART</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h5>Welcome to Sports Mart</h5>
<h2>SPORTSMART</h2>
<input type="text" placeholder="Search the Product" id="searchInput">
<nav>
<a href="#" id="authBtn">Login</a>
<a href="wishlist.html">Wishlist <span id="wishCount" class="count">0</span></a>
<a href="cart.html">Cart <span id="cartCount" class="count">0</span></a>
</nav>
</header>
<!-- !main content! -->
<div class="container" id="mainContainer"></div>
<footer>
© 2025 SportsMart | Sports For All
</footer>
<script src="scripts.js"></script>
</body>
</html>