-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
52 lines (52 loc) · 2.05 KB
/
Copy pathcontact.html
File metadata and controls
52 lines (52 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<title> Contact </title>
<link rel="stylesheet" href="mainstyle.css">
<link rel="icon" type="image.ico" href="favicon.ico">
</head>
<body>
<header>
<h1>Nicks Webpage</h1>
</header>
<nav>
<a href="index.html">Home </a>
<a href="pictures.html">Pictures </a>
<a href="desktopbackgrounds.html">Desktop Backgrounds </a>
<a href="audiofiles.html">Audio Files </a>
<a href="csgocode.html">CS:GO Code </a>
<a href="ahkcode.html">AHK Code </a>
<a href="sonnets.html">Sonnets </a>
<a href="contact.html">Contact </a>
</nav>
<br>
<main>
<div id="contactform">
<form name="contactForm" id="contactForm" action="example.com" method="post">
<label for="name">Name:</label>
<br>
<input type="text" id="name" name="Name">
<br> <br>
<label for="thoughts">What do you think about my website?</label>
<br>
<textarea id="thoughts" name="thoughts" rows="3" cols="27"></textarea>
<br> <br>
<label for="useful">What did you find useful on this site and do you have <br>suggestions for additional content or categories of content?</label>
<br>
<textarea id="useful" name="useful" rows="5" cols="33"></textarea>
<br> <br>
<label for="additions">If you would like me to add additional content, please link to it here.</label>
<br>
<textarea id="additions" name="additions" rows="5" cols="33"></textarea>
<br>
<input type="submit" id="submitcomments" value="submit">Submit</button>
</form>
</div>
<div id="othercontactinfo">
<h2>Contact Info</h2>
<h3>My GPG Public Key, if you are into that sort of thing.</h3>
<a href="publickey.txt">Public </a>
</div>
</main>
</body>
</html>