-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontacts.html
More file actions
executable file
·73 lines (69 loc) · 2.28 KB
/
contacts.html
File metadata and controls
executable file
·73 lines (69 loc) · 2.28 KB
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Contact Us!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/styles.css" media="screen" />
</head>
<body>
<header role="banner">
<h1>
Yay Food Trucks
</h1>
</header>
<nav role="navigation">
<ul>
<li class="navlink">
<a href="index.html">Home</a>
</li>
<li class="navlink">
<a href="blog.html">Blog</a>
</li>
<li class="navlink">
<a href="#"><strong>Contacts</strong></a>
</li>
<li class="navlink">
<a href="orders.html">Orders</a>
</li>
<li class="navlink">
<a href="#">Stuff</a>
</li>
</ul>
</nav>
<main role="main">
<section id="address">
<h2>
Location
</h2>
<p>1234 Sesame Street<br>
Seattle, WA 98119
<p>123-789-6789<p>
</section>
<h2>
Email us!
</h2>
<fieldset>
<section id="email_form">
<form id="contact_form" name="contact_form" role="form">
<label for="email_to">To: us@hotmail.com</label><br>
<label for="email_from">Your email address:</label>
<input type="email" id="email_from" name="email_from" required role="textbox" aria-required="true" class="longText"><br>
<label for="email_subject">Subject: </label>
<input type="text" id="email_subject" name="email_subject" role="textbox" class="longText"><br>
<label for="email_message">Message Body: </label><br>
<textarea rows="10" cols="50" id="email_message" name="email_message" role="textbox" aria-multiline="true"></textarea><br>
<button id="email_button" role="button">Email us!</button>
</form>
</fieldset>
</section>
</main>
<footer role="contentinfo">
<p id="copyright">© Peggy and Sarah 2015</p>
</footer>
<script src="js/localstorage.js"></script>
</body>
</html>