-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
85 lines (73 loc) · 3.04 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="about.css" />
<link rel="icon" href="icon.jpg" type="image/x-icon">
<title>Climatist - About Me</title>
</head>
<body>
<header>
<nav id="navbar" class="sticky">
<div class="logo">
<text><a href="index.html">Climatist</a></text>
</div>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<div class="menu-items">
<ul>
<li><a href=articles.html>Articles</a></li>
<li><a href=stats.html>Statistics</a></li>
<li><a href=help-out.html>Help Out</a></li>
<li><a href=about.html class="active">About Me</a></li>
</ul>
</div>
</nav>
</header>
<div class="content" id="navpad">
<div class="writingh">
<h1><strong>We</strong> are Climatists,</h1>
<p><strong>Trying</strong> to make a <strong>Change.</strong></p><br><br>
</div>
<div class="writing">
<h1>The Story of Climatist</h1><br>
<p>
Climatist was born when I decided I wanted to do what I could to help my home. It was formed with the aim to
view the impending Climate crisis with a perspective of optimism as well as realism. Climatist is a medium for
people to realize that there is a dire need for action and that this realization shall be achieved by the act of
spreading awareness.
</p>
</div>
<div class="main">
<div class="Q2">
<h1>About Me</h1><br>
<text>Hi! I am Parth, an 18-year-old undergraduate at the University of British Columbia. I like playing
football and being digitally creative.
I am happy that Climatist no longer remains a figment of my imagination and
that I was able to build Climatist because of my passion towards doing whatever I could do to help combat
climate change and towards computer science. I hope that Climatist can become a medium for information about
Climate Change and inspire others to help save our Earth.</text><br>
<p id="email">For any queries write an email to [email protected] .</p>
</div>
</div>
</div>
<div class="footer-basic">
<footer>
<ul class="list-inline">
<li class="list-inline-item"><a href="index.html">Home</a></li>
<li class="list-inline-item"><a href="articles.html">Articles</a></li>
<li class="list-inline-item"><a href="stats.html">Statistics</a></li>
<li class="list-inline-item"><a href="help-out.html">Help Out</a></li>
<li class="list-inline-item"><a href="about.html">About Me</a></li>
</ul>
<p class="copyright">Climatist © 2022</p>
</footer>
</div>
<script src="app.js" defer></script>
</body>
</html>