-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
45 lines (38 loc) · 953 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Helpful Hello World</title>
<meta name="description" content="A helpful Hello World website to teach and learn">
<link rel="stylesheet" type="text/css" href="./styles.css" />
</head>
<body>
<nav>
<ul>
<li>
<a href="./index.html">Hello World</a>
</li>
<li>
<a href="./contact.html">Contact</a>
</li>
</ul>
</nav>
<h1>Contact</h1>
<section>
<h2>Email</h2>
<a href="mailto:[email protected]">[email protected]</a>
<h2>Write a message</h2>
<form id="contact-form">
<label>Name*:</label>
<input type="text" required />
<label>Email:</label>
<input type="email" />
<label>Secret:</label>
<input type="password" />
<label>Message:</label>
<textarea rows="4"></textarea>
<button type="submit">Post Message</button>
</form>
</section>
<script type="text/javascript" src="./contact-scripts.js"></script>
</body>
</html>