-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
40 lines (38 loc) · 1.75 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
<!DOCTYPE html>
<html>
<head>
<title>Seattle Area Hikes</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Amatic+SC|Raleway:100,200,600,700" rel="stylesheet">
</head>
<body>
<div class="navigation">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./locations.html">Locations</a></li>
<li class="header">Seattle Area Hikes</li>
<li><a href="./about.html"><strong>About</strong></a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</div>
<div class="center about">
<h3>About:</h3>
<p class="p1">Seattle Area Hikes is a page to explore the
wilderness of the surrounding Seattle area. <br>
Go to the locations page to explore and find hikes
and parks. Whether you are from Seattle or visiting, <br>
the locations here provided by explorers like you
are a must to visit. <br> Go to the contact page and feel
free to ask us any questions.
</p>
<h3>The Creator: </h3>
<p>I am currently a high school student who is
learning how to code. <br> I live in the Seattle area
and go on hikes with my friends every now and then,
<br> which inspired me to create this page.</p>
<h3>Version:</h3>
<p>Version 1.0 created on 8/7/19. Last edited on 8/8/19.</p>
</div>
<p class="center">By: <a href="https://github.com/chazmorton" target="_blank">Chaz Morton</a> | v.1.0</p>
</body>
</html>