-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
41 lines (40 loc) · 1.76 KB
/
contact.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
<!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">About</a></li>
<li><a href="./contact.html"><strong>Contact</strong></a></li>
</ul>
</div>
<form class="center form-spacing">
<div class="full-name">
<label for="first-name">First Name:</label>
<input type="text" name="first-name" id="first-name" required>
<br>
<label for="last-name">Last Name:</label>
<input type="text" name="last-name" id="last-name" required>
<br>
<br>
<div class="contact-spacing">
<label for="contact-box">Contact:</label>
<br>
<label for="contact-box">(max 250 characters)</label>
</div>
<br>
<textarea type="text" name="contact-box" id="contact-box" required rows="8" cols="40" maxlength="250" placeholder="Contact Us"></textarea>
<br>
<input id="submit" type="submit" value="Submit">
</div>
</form>
<p class="center">By: <a href="https://github.com/chazmorton" target="_blank">Chaz Morton</a> | v.1.0</p>
</body>
</html>