-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
94 lines (87 loc) · 4.3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="https://i.pinimg.com/736x/7c/b5/e5/7cb5e51817daef6d8194ea98f37772ea.jpg" alt="Logo">
</div>
<ul class="nav-links">
<li><a href="http://127.0.0.1:5500/.vscode/index.html">Home</a></li>
<li><a href="http://127.0.0.1:5500/.vscode/aboutus.html">About Us</a></li>
<li class="dropdown">
<a href="#">Featured Destinations</a>
<div class="dropdown-content">
<a href="http://127.0.0.1:5500/.vscode/Michigan.html">Michigan</a>
<a href="http://127.0.0.1:5500/.vscode/index.html">Nigeria</a>
<a href="http://127.0.0.1:5500/.vscode/pr.html">Puerto Rico</a>
<a href="http://127.0.0.1:5500/.vscode/Chicago.html">Chicago</a>
</div>
</li>
<li><a href="http://127.0.0.1:5500/.vscode/Travel-Tips.html#">Travel Tips</a></li>
<li><a href="http://127.0.0.1:5500/.vscode/contact.html">Contact Us</a></li>
</ul>
</nav>
</header>
<div id="contact" class="background clearfix on-top">
<h2>CONTACT</h2>
<h3>Any suggestions, questions?</h3>
<p class="center">Please feel free to send a message:</p>
<p class="center"><i class="fa fa-envelope"></i> <a href="mailto:jhornsby@rochesteru.edu">jhornsby@rochesteru.edu</a></p>
<div class="contact-form section-gap">
<div class="wrapper">
<div class="text-center">
<h1 style="font-size: 40px;">Contact Us</h1>
</div>
<div class="contact-form">
<form action="javascript:sendmail()" method="post">
<div class="field">
<input type="text" class="form-control" name="Name" id="Name" placeholder="Name" required="">
</div>
<div class="field">
<input type="email" class="form-control" name="Sender" id="Sender" placeholder="Email" required="">
</div>
<div class="field">
<input type="text" class="form-control" name="Subject" id="Subject" placeholder="Subject" required="">
</div>
<textarea name="Message" class="form-control" id="Message" placeholder="Message" required=""></textarea>
<div class="btn-container">
<button type="submit" class="btn btn-contact">Send Message</button>
</div>
</form>
</div>
</div>
</div>
</div>
<footer>
<nav>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li class="dropdown">
<a href="#">Featured Destinations</a>
<div class="dropdown-content">
<a href="hhttp://127.0.0.1:5500/.vscode/Michigan.html">Michigan</a>
<a href="http://127.0.0.1:5500/.vscode/pr.html">Puerto Rico</a>
<a href="http://127.0.0.1:5500/.vscode/Chicago.html">Chicago</a>
</div>
</li>
<li><a href="#">Travel Tips</a></li>
<li><a href="http://127.0.0.1:5500/.vscode/contact.html">Contact Us</a></li>
</ul>
</nav>
</footer>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="contact.js"></script>
</body>
</html>