-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 1.26 KB
/
index.html
File metadata and controls
43 lines (38 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hello Healthy</title>
<link rel="stylesheet" href="style.css"> <!-- Link to your CSS file -->
</head>
<body>
<header>
<div class="container">
<div class="logo">
<a href="/">Hello Healthy</a> <!-- Replace with your actual logo (image or text) -->
</div>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/shop">Shop</a></li>
<li><a href="/about">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
<div class="header-right">
<div class="search-box">
<input type="text" placeholder="Search...">
<button type="submit">Search</button>
</div>
<div class="cart-icon">
<a href="/cart">
<img src="cart-icon.png" alt="Cart">
</a>
</div>
</div>
</div>
</header>
<!-- Rest of your page content goes here -->
</body>
</html>