-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
51 lines (49 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<title id="title">Contact me!</title>
<link rel="stylesheet" type="text/css" href="style.css"/>
<meta charset="utf-8"/>
</head>
<body>
<div class="content">
<div class="centered">
<div class="topNav" id="topNav">
<a href="index.html">Home</a>
<span class="navigationSpace"></span>
<a href="news.html">News</a>
<span class="navigationSpace"></span>
<a class="active" href="#contact">Contact</a>
<span class="navigationSpace"></span>
<a href="about.html">About</a>
</div>
<h1>Please Contact Me!</h1>
<p>This is a test contact page on my test website!</p>
<form action="mailto:kbeanblossom@knoxvillechamber.com?subject=Response from website" method="post" enctype="text/plain" id="contactForm">
<div>
<label for="name">Name:</label>
<input type="text" id="name" name="user_name" autocomplete="name" placeholder="Name">
</div>
<div>
<label for="mail">Email:</label>
<input type="email" id="mail" name="user_mail" autocomplete="email" placeholder="Email Address">
</div>
<div>
<label for="msg">Message:</label>
<textarea id="msg" name="user_message" placeholder="Please type your message here"></textarea>
</div>
<div class="formButton">
<button type="submit">Submit</button>
</div>
</div>
</form>
<!-- <h2>My Contact Information</h2>
<p>Kyle Beanblossom</p>
<p>Technical Support Representative at the Knoxville Chamber</p>
<p>865-246-2636</p>
<a id="email" href="mailto:kbeanblossom@knoxvillechamber.com>">kbeanblossom@knoxvillechamber.com</a>-->
</div>
<div id="time" class="footer"></div>
<script src="js/main.js"></script>
</body>
</html>