-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (48 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- link the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- link the webpage's JavaScript file -->
<script src="/script.js" defer></script>
</head>
<body>
<!-- navbar -->
<header>
<div class = "navbar">
<ol>
<li id = "dropItem"><a href="index.html" id = "current"><p>HOME</p></a></li>
<li id = "dropItem"><p>ABOUT</p>
<div id = "dropdown">
<a href = "mission.html">OUR MISSION</a>
<a href = "about.html">ABOUT ME</a>
<a href = "faq.html">FAQ</a>
</div>
</li>
<li id = "dropItem"><p>PHOTO ALBUM</p>
<div id = "dropdown">
<a href = "photos.html">PHOTO ALBUM</a>
<a href = "personalized.html">DRAW YOUR OWN</a>
</div>
</li>
<p id = "mainHead">Walkable Cities</p>
</ol>
</div>
</header>
<!-- end of navbar -->
<div class="center">
<div>
<h1>ABOUT ME</h1>
</div>
<div>
<p>
Hi! My name is Jasmine and this is my project for the Girls Who Code 2022 Summer Immersion Program. I wanted to build a website for this because this is a topic I am both passionate and knowledgeable about. I think more people should learn about environmental justice and the ecological impact we have on our environment.
</p>
</div>
</div>
</body>
</html>