-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
84 lines (63 loc) · 2.9 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact Us</title>
<meta charset="utf-8">
<link rel=stylesheet href="main.css">
</head>
<body>
<header class="site_header">
<a href="index.html"><img src="images/header3.png" alt="page header" id="top"></a>
</header>
<nav class="cunav">
<ul>
<li><span class="navheading">Topics</span>
<ul>
<li><a href="htmlinfo.html">What is HTML</a></li>
<li><a href="cssbasics.html">CSS Basics</a></li>
<li><a href="design_principles.html">Design Principles</a></li>
</ul>
</li>
<li><span class="navcurrent">Contact Us</span></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
<main>
<h1>Contact Us</h1>
<section class="contact_box">
<h2>Feedback</h2>
<p>Please feel free to contact us with the form below. We would love to hear from you!</p>
<form method="post" name="contact" id="contact" action="myformmail.php">
<input type="hidden" name="subject" id="subject" value="comp 1850 final exam feedback">
<input type="hidden" name="recipient" id="recipient" value="clara">
<div class="form_row">
<label for="name">Name:</label>
<input type="text" name="name" id="name" size="35">
</div>
<div class="form_row">
<label for="email">Email:</label>
<input type="email" name="email" id="email" size="35">
</div>
<div class="form_row">
<label for="comments">Commnets:</label>
<textarea name="comments" id="comments" rows="15" cols="80" placeholder="enter comments.."></textarea>
</div>
<div class="form_submit">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</div>
</form>
</section>
</main>
<footer>
<div class="footer_left">
©2020 Clara Fok for Comp 1850 CRN (202010-70400)<br>
<a href="mailto:[email protected]">[email protected]</a>
</div>
<div class="footer_right">
<a href="#top" class="fright">Top</a>
<a href="index.html" class="fright">Home</a>
</div>
</footer>
</body>
</html>