-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (57 loc) · 2.23 KB
/
about.html
File metadata and controls
69 lines (57 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Daily Wellness Guide</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar" role="navigation" aria-label="main menu">
<!--Hamburger-->
<div class="hamburger" id="hamburger">
<span></span>
<span></span>
<span></span>
</div>
<ul class="nav-links" id="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="yoga.html">Yoga</a></li>
<li><a href="meditation.html">Meditation</a></li>
</ul>
</nav>
<!-- Hero -->
<section class="hero-section">
<div class="container">
<div class="hero-content">
<h1>About Daily Health</h1>
<p>Simple tools for your everyday wellbeing</p>
</div>
</div>
</section>
</header>
<main>
<section class="intro">
<div class="intro-text">
<h2>Everyday tips for your wellbeing</h2>
<p>
This space is designed to offer small doses of inspiration throughout your day,
tailored to your current state of mind. It's not a replacement for medical advice
or professional care, but a companion for finding moments of wellness using tools
that are always accessible to you.
</p>
<p>By checking in with how you're feeling, we'll suggest simple practices that match
your energy and needs: a short but effective meditation, a gentle yoga pose to hold for 2-5 minutes or longer and our favourite the affirmations that can re adjust your focus for the day. These small
moments can make a meaningful difference in your day to day life. We really hope you like the idea!</p>
</div>
</section>
<!--Footer-->
<footer class="site-footer" role="contentinfo">
<a href="about.html" class="footer-link" aria-label="About InnerGlow">About</a> |
<a href="contact.html" class="footer-link" aria-label="Contact Us">Contact</a>
<p class="copyright-text">© 2025 DailyHealth. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>