-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 960 Bytes
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FlowerHub</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to FlowerHub</h1>
</header>
<nav>
<ul id="navigation">
<li><a href="#" onclick="fetchSectionData('home')">Home</a></li>
<li><a href="#" onclick="fetchSectionData('about')">About</a></li>
<li><a href="#" onclick="fetchSectionData('services')">Services</a></li>
<li><a href="#" onclick="fetchSectionData('contact')">Contact</a></li>
</ul>
</nav>
<main id="section-container">
<!-- Sections will be dynamically populated here -->
</main>
<footer>
<p>© 2024 FlowerHub. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>