forked from r4gesingh47/Hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
48 lines (44 loc) · 1.84 KB
/
about.html
File metadata and controls
48 lines (44 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Page</title>
<link rel="stylesheet" href="about.css">
</head>
<body>
<section class="homePage">
<div class="navbar">
<div class="logo">
<img src="logo.png" alt="articles/article.html">
</div>
<div class="menus">
<li><a href="index.html">Home</a></li>
<li><a href="articles/article.html">Articles</a></li>
<li><a href="ask.html">Ask a question</a></li>
<li><a href="about.html">About</a></li>
</div>
<div class="profile">
<a href="login.html"><p>Login</p></a>
</div>
</div>
<div class="about">
<img src="logo.png" width="150" height="150">
<h1>About Us </h1>
<h2>The heart of Health plus is questions</h2>
<p>Questions that affect the world, questions that guide important life decisions.
</p>
<h2>Why Health Plus exists</h2>
<p> Our mission is to share knowledge and experiences about health.
Not all knowledge can be written down, but much of that which can be, still isn't.
It remains in people’s heads or only accessible if you know the right people.
We want to connect the people who have knowledge to the people who need it,
to bring together people with different perspectives so they can understand each other better,
and to empower everyone to share their knowledge for the benefit of the rest of the world.
</p>
</div>
</section>
</body>
</html>