generated from Code-Institute-Org/ci-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
subscribe.html
114 lines (104 loc) · 4.76 KB
/
subscribe.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta tags for search engines -->
<meta name="keywords"
content="wellness, health, balanced lifestyle, wellness tips, healthy living, mind body spirit, wellness resources,
holistic health, wellness journey, mental health, physical health, nutrition, fitness, relaxation, stress management, path to wellness">
<meta name="description" content="Your Path to Wellness: Embrace a healthier lifestyle with our comprehensive guides, tips, and resources.
Achieve balance and wellness in mind, body, and spirit.">
<!-- Favicon -->
<link rel=" apple-touch-icon" sizes="180x180" href="assets/favicon/favicon.mind/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon.mind/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon.mind/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<!-- Title -->
<title>Your Path to Wellness</title>
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Header -->
<header>
<div class="hero-image">
<div class="hero-text">
<h1>Your Path to Wellness</h1>
</div>
</div>
</header>
<!-- Main content -->
<main>
<div class="navbar">
<a href="index.html"><i class="fa-solid fa-house-chimney"></i>Home</a>
<a href="meditation.html"><i class="fa-solid fa-spa"></i>Meditation</a>
<a href="activity.html"><i class="fa-solid fa-person-running"></i>Activity</a>
<a href="diet.html"><i class="fa-solid fa-utensils"></i>Diet</a>
<a href="cold.html"><i class="fa-solid fa-snowflake"></i>Cold</a>
<a href="breathing.html"><i class="fa-solid fa-wind"></i>Breathing</a>
<a href="subscribe.html"><i class="fa-solid fa-envelope"></i>Subscribe</a>
</div>
<div class="main">
<div>
<h2>Subscribe to Our Newsletter</h2>
<hr>
<br>
<p id="center">Stay updated with the latest tips and exclusive content by subscribing to our
newsletter. Join our community and receive:</p>
</div>
<br>
<div class="container">
<div>
<ul id="subscribe-list">
<li><i class="fa-solid fa-heart"></i>Weekly wellness tips.</li>
<li><i class="fa-solid fa-heart"></i>Guided meditation and breathing exercises.</li>
<li><i class="fa-solid fa-heart"></i>Healthy recipes and nutrition advice.</li>
<li><i class="fa-solid fa-heart"></i>Special discounts on wellness products.</li>
</ul>
</div>
<br>
<div>
<form id="subscribe-form" action="https://formdump.codeinstitute.net" method="post">
<label for="first-name">First Name</label>
<br>
<input type="text" id="first-name" name="fname" required>
<br>
<label for="last-name">Last Name</label>
<br>
<input type="text" id="last-name" name="lname" required>
<br>
<label for="email-address">Email Address</label>
<br>
<input type="email" id="email-address" name="email" required>
<br>
<button class="button" type="submit">Submit</button>
<button class="button" type="reset">Reset</button>
</form>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer>
<ul id="social-networks">
<li>
<a href="https://www.facebook.com/" target="_blank" rel="noopener"
aria-label="Visit our Facebook page. Opens in a new tab."><i
class="fa-brands fa-square-facebook"></i></a>
</li>
<li>
<a href="https://x.com/?lang=en" target="_blank" rel="noopener"
aria-label="Visit our X page. Opens in a new tab."><i class="fa-brands fa-x-twitter"></i></a>
</li>
<li>
<a href="https://www.instagram.com/" target="_blank" rel="noopener"
aria-label="Visit our Instagram page. Opens in a new tab."><i
class="fa-brands fa-square-instagram"></i></a>
</li>
</ul>
</footer>
<!-- Font awesome -->
<script src="https://kit.fontawesome.com/a8bfa31f46.js" crossorigin="anonymous"></script>
</body>
</html>