-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
66 lines (53 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DealGator</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" media="all" />
<!--Google Font-->
<link href='http://fonts.googleapis.com/css?family=Lato:100' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!--Javascript-->
<script type="text/javascript" src="javascript/contact.js"></script>
<!--Favicon-->
<link rel="shortcut icon" href="./images/favicon.ico"/>
</head>
<body>
<!--Nav Bar-->
<div id="nav">
<h1 class="title"> <a href="index.html">DealGator</a></h1>
<h1 class="signin"> <a href="signin.html">Sign In</a></h1>
<h1 class="about"> <a href="about.html">About Us</a></h1>
</div>
<!--Contact-->
<div id="Contact" >
<div id="contact_form">
<h5> Contact us </h5>
<h6>Email Address:</h6>
<input id="email" type="text" class="txt" placeholder="[email protected]" autofocus = "autofocus">
<h7>Comments:</h7>
<textarea id ="message" class="txt2" placeholder="Please leave your comments here"></textarea>
<a id = "mail" href"#"> <input id="mailBtn" type="button" class="sendBtn" onclick="setMailTo()"/> </a>
</div>
</div>
<!--Footer-->
<div id="foot">
<div id="foot_text">
<h6><a href="index.html">DealGator</a></h6>
<ul>
<li><a href="about.html">About</a></li>
<li class="space">|</li>
<li><a href="faq.html">FAQ</a></li>
<li class="space">|</li>
<li><a class="active" href="contact.html">Contact</a></li>
</ul>
<p>© DealGator</p>
</div>
<div id="foot_chomped">
<img id="foot_gator" src="images/DealGator_green.png" alt="DealGator Logo">
<div id="foot_chompedNum">23,452</div>
<div id="foot_chompedText">Deals Chomped!</div>
</div>
</div>
</body>
</html>