-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrewards.html
More file actions
78 lines (72 loc) · 2.64 KB
/
rewards.html
File metadata and controls
78 lines (72 loc) · 2.64 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
75
76
77
78
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PlantMama - Rewards</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="rewards-section">
<h2>YOUR REWARDS</h2>
<p>You are closer to your perfect plants than you think, and your hard work deserves rewards.</p>
<p class="update-text">Rewards are updated weekly</p>
<div class="rewards-container">
<div class="reward-card">
<img src="images/Plantingtrees.jpg" alt="Planter of the Week">
<div class="reward-info">
<h3>PLANTER OF THE WEEK</h3>
<p>You are in first place this week among planters in your area.</p>
</div>
</div>
<div class="reward-card">
<img src="images/images.jpg" alt="Never Skip the Day">
<div class="reward-info">
<h3>NEVER SKIP THE DAY</h3>
<p>You haven’t skipped a day without visiting our website.</p>
</div>
</div>
<div class="reward-card">
<img src="images/download.jpg" alt="Caring Owner">
<div class="reward-info">
<h3>CARING OWNER</h3>
<p>Your plants are all in great condition. Well done!</p>
</div>
</div>
</div>
</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>