-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (51 loc) · 1.77 KB
/
index.html
File metadata and controls
54 lines (51 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlantMama - Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<a href="index.html">PlantMama.</a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="chat.html">Chat</a></li>
<li><a href="rewards.html">Rewards</a></li>
<li><a href="plants.html">Plants Collection</a></li>
<li><a href="reminders.html">Reminders</a></li>
<li><a href="journal.html">Journal</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="weather.html">Weather Tips</a></li>
</ul>
</nav>
<div class="search-bar">
<input type="text" placeholder="Search">
<button>🔍</button>
</div>
</header>
<section class="hero">
<h1>PlantMama</h1>
<h2>PLANTING SOLVED</h2>
<p>A tool that helps grow your plants faster and healthier.
With no missed days and headache. Our tools allow you to identify plants effortlessly and find the best solutions.</p>
<button class="chat-btn" onclick="window.location.href='chat.html'">Start chatting</button>
</section>
<footer>
<p>© 2025 PlantMama. All rights reserved.</p>
</footer>
</body>
</html>
<script>
const links = document.querySelectorAll("nav a");
const current = window.location.pathname.split("/").pop();
links.forEach(link => {
if (link.getAttribute("href") === current) {
link.classList.add("active");
}
});
</script>