-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
71 lines (58 loc) · 1.86 KB
/
Contact.html
File metadata and controls
71 lines (58 loc) · 1.86 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
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact</title>
<link rel="icon" href="images/logo.png" type="image/ico" />
<link rel="stylesheet" href="StyleSheet.css" type="text/css" />
<meta charset="UTF-8">
<meta name="description" content="Extreme sport store.">
<meta name="keywords" content="Sports, Extreme, Contact">
<meta name="author" content="Dustin Busmer">
</head>
<body>
<main>
<header>
<h1>Contact</h1>
</header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Snowboarding.html">Snowboarding</a></li>
<li><a href="DownhillBiking.html">Downhill Biking</a></li>
<li><a href="AboutUs.html">About Us</a></li>
<li style="float:right"><a class="active" href="Contact.html">Contact</a></li>
</ul>
</nav>
<p id="contactP">Feel free to give us a call on Ph: 32018749 or fill out the form below and we will get in contact with you A.S.A.P. Thank you.</p>
<br>
<br>
<div id="contactForm">
<form action="Response.html" method="get">
First Name:<br>
<input type="text" name="firstname" required><br>
Last Name:<br>
<input type="text" name="lastname" required><br>
Question:<br>
<textarea name="question" rows="10" cols="30"></textarea><br>
<br>
What is your preferred method of contact?<br>
<input type="radio" name="respond" value="email" checked> E-mail<br>
<input type="radio" name="respond" value="phone"> Telephone<br>
<br>
Please fill out the neccesary fields<br>
<br>
E-mail:<br>
<input type="email" name="email" required><br>
Telephone:<br>
<input type="number" name="telephone" required><br>
<br>
<input class="form-button" type="submit" value="Submit"><input class="form-button" type="reset"><br>
<br>
</form>
</div>
</main>
<footer>
<p>Copyright © 2019 Extremophile. All rights reserved.</p>
</footer>
</body>
</html>