-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
61 lines (54 loc) · 1.71 KB
/
contact.html
File metadata and controls
61 lines (54 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
<title>Mrs. Andrus's English Class</title>
</head>
<body>
<div class="menu-outer">
<div class="menu">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="content.html">CONTENT</a></li>
<li><a href="calendar.html">CALENDAR</a></li>
<li><a href="assignments.html">ASSIGNMENTS</a></li>
<li><a href="blog.html">BLOG</a></li>
<li><a class="active" href="contact.html">CONTACT</a></li>
</ul>
</div>
</div>
<div class="content">
<h1>Contact Me</h1>
<p>Check your individual course syllabus to find the best way to contact me directly.</p>
<p>If you want to sign up for my monthly newsletter, fill out the form below!</p>
<div class="contact-form">
<form action="https://formspree.io/berkeley.andrus@gmail.com" method="POST">
<table>
<tbody>
<tr>
<td>Your Name: </td>
<td>
<input type="text" name="name">
</td>
</tr>
<tr>
<td>Your Email Address: </td>
<td>
<input type="email" name="_replyto">
</td>
</tr>
<tr>
<td>
<input type="submit" value="Sign Up">
</td>
</tr>
</tbody>
</table>
</form>
</div>
</div>
<footer class="credit_label">
<p>This website designed by Berkeley Andrus. Source code can be found at <a href="https://github.com/bandrus5/260CreativeProject1">https://github.com/bandrus5/260CreativeProject1</a></p>
</footer>
</body>
</html>