-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
107 lines (90 loc) · 3.46 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png"
href="https://raw.githubusercontent.com/Vidushi-Gupta/Actif-age/main/Assets/favicon.png">
<title>Actif Ageing | Home</title>
<link rel="stylesheet" href="index.css">
<script src="index.js"></script>
</head>
<body>
<div id="banner">
<div class="wrapper">
<header>
<h1 class="logo">Actif Ageing</h1>
<div class="menu-button">
<h4>Menu-button</h4>
</div>
<nav>
<a href="index.html">Home</a>
<a href="#services">Services</a>
<a href="health.html">Health</a>
<a href="https://actifageing.netlify.app/page-2/">Participation</a>
<a href="https://actifageing.netlify.app/">Security</a>
<a href="contact.html">Contact Us</a>
</nav>
</header>
<div class="content">
<h1 class="title">Promoting active ageing!</h1>
<h2 class="sub_title">
Your one-stop destination to age actively and productively. Find friends, security, community, work opportunities and
wellbeing.
</h2>
</div>
</div>
</div>
<section id="services">
<div class="wrapper">
<ul class="development">
<li>
<h1 class="service_title">Health and Well-being</h1>
</li>
<li>
<p>
“Health” refers to physical, mental and social well being.
</p>
</li>
<li><a href="health.html" class="button button_highlight">Learn More</a></li>
</ul>
<ul class="development">
<li>
<h1 class="service_title">Participation</h1>
</li>
<li>
<p>
Participation in social, economic, cultural, spiritual and civic affairs
</p>
</li>
<li><a href="https://actifageing.netlify.app/page-2/" class="button button_highlight">Learn More</a></li>
</ul>
<ul class="development">
<li>
<h1 class="service_title">Security</h1>
</li>
<li>
<p>
Social security, safety, rights and important emergency numbers.
</p>
</li>
<li><a href="https://actifageing.netlify.app/" class="button button_highlight">Learn More</a></li>
</ul>
</div>
</section>
<section id="contact">
<div class="wrapper">
<h1 class="title">Get in touch</h1>
<p class="sub_title">
Want to know more about us? Have any doubts?
</p>
<a href="contact.html" class="button button_highlight">Contact Us</a>
</div>
</section>
<footer>
<p class="copyright">
Kat Driver | HACKRICE 11</p>
</footer>
</body>
</html>