forked from GhadgeGauri/HactoberFest23
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhealth-app.html
More file actions
75 lines (66 loc) · 1.75 KB
/
Copy pathhealth-app.html
File metadata and controls
75 lines (66 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health App</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em 0;
}
section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
h1, h2 {
color: #333;
}
p {
line-height: 1.6;
color: #666;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #4caf50;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<header>
<h1>Health App</h1>
</header>
<section>
<h2>Welcome to our Health App!</h2>
<p>Track your fitness, monitor your health, and achieve your wellness goals with our user-friendly health app.</p>
<p>Features:</p>
<ul>
<li>Personalized fitness plans</li>
<li>Nutrition tracking</li>
<li>Health statistics dashboard</li>
<li>Community support</li>
</ul>
<a href="#" class="cta-button">Get Started</a>
</section>
</body>
</html>