-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
63 lines (56 loc) · 1.95 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic,300,300italic,600,600italic,800,800italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<link rel="stylesheet" href="css/styles.css">
<title>Contact</title>
</head>
<body>
<div class="wrapper">
<header>
<a href="index.html"><img class="logo" src="site-assets/Logo.png" alt="Logo Image" /></a>
<a href="index.html"><h1 class="title-header"><span class="bold">Portland</span></a> Historical Tours</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Portland Tours</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
<main class="main registration">
<h1>Contact</h1>
<form class="" action="#" method="post">
<label for="firstName">First Name:</label>
<input type="text" id="firstName">
<label for="lastName">Last Name:</label>
<input type="text" id="lastName">
<label for="email">Email:</label>
<input type="email" id="email">
<label for="subject">Subject: </label>
<input type="text" id="subject">
<label for="message">Message:</label>
<br>
<textarea type="text" id="message"></textarea>
<br>
<button type="sumbmit" name="button">Send</button>
</form>
<div class="clear"></div>
</main>
</div>
<footer>
<p class="copy">
Portland Historical Tours © 2016
</p>
<div class="address">
<p>Portland Historical Tours</p>
<p>123 Main St</p>
<p>Portland, OR 97212</p>
</div>
</footer>
</body>
</html>