-
Notifications
You must be signed in to change notification settings - Fork 0
/
features.html
67 lines (61 loc) · 2.4 KB
/
features.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Features - Alzheimer's Support Hub</title>
<link rel="stylesheet" href="styles.css">
<style>
body {
background-color: rgb(250, 250, 250);
text-align: center; /* Center-align text */
line-height: 1.6; /* Add line spacing */
}
</style>
</head>
<body>
<header>
<div class="container" >
<!-- Add image tag -->
<img src="azheimer.png" alt="Alzheimer's Support Hub Logo" class="logo">
<h1 >Welcome to Alzheimer's Support Hub</h1>
<nav align="center">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="games.html" id="gamesButton">Games</a></li>
<!-- New buttons for resources and chatbot -->
<li><a href="resources.html">Resources</a></li>
<li><a href="chatbot.html" id="chatbotButton">Chatbot</a></li>
<li class="sos-button"><a href="sos.html">SOS</a></li>
</ul>
</nav>
</div>
</header>
<section class="features">
<div class="container">
<h2>Our Features</h2>
<div class="feature">
<h3><u><strong>Memory-Enhancing Games</strong></u></h3>
<p>Engage your mind with our interactive and stimulating memory games designed to improve cognitive function and memory retention.</p>
</div>
<div class="feature">
<h3><u><strong>Free Resources</strong></u></h3>
<p>Stay organized and on track with personalized reminders for daily activities, medication schedules, appointments, and more.</p>
</div>
<!-- Add more features here -->
<div class="feature">
<h3><u><strong>Games to improve cognitive abilities</strong></u></h3>
<p>Play Games like sudoku Schulte's table and others to keep track of your cognitive abilities and for memory enhancement</p>
</div>
</div>
</section>
<footer>
<div class="container">
<p>Alzheimer's Support Hub © 2024. All rights reserved. <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a> | <a href="#">Accessibility Statement</a></p>
</div>
</footer>
</body>
</html>