-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
161 lines (120 loc) · 5.72 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!-- HTML5 Declaration -->
<!DOCTYPE html>
<!-- This page is in the US style of English -->
<html lang="en-us">
<head>
<!-- || Required meta tags || -->
<!-- Character encoding for Unicode -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- || SEO || -->
<!-- © Joshua M. Small -->
<meta name="description"
content="UNC Chapel Hill Coding bootcamp Flight and Weather Application that includes HTML, CSS, jQuery, Foundation and JavaScript." />
<meta name="robots" content="noindex,nofollow" />
<!-- Page Title -->
<title>Gallivant - Contact</title>
<!-- || Style Sheets || -->
<!-- Compressed Foundation CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Kristi&family=Raleway:wght@500&display=swap"
rel="stylesheet" />
<!-- || FavIcon || -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon_io/favicon-16x16.png">
<!-- FavIcon Manifest-->
<link rel="manifest" href="assets/images/favicon_io/site.webmanifest">
<!-- Coding by: UNC's Team #4 Joshua M. Small, Chelsea Haviland, Garret Dobson & Tanner Cook -->
</head>
<!-- || BODY || -->
<body>
<!-- || HEADER || -->
<header>
<div class="container">
<a href="index.html" id="logo"><img src="assets/images/gallivant-logo-no-bg.png" alt="Gallivant Logo"
id="gallivant-logo"></a>
<!-- || NAVBAR || -->
<!-- © Joshua M. Small -->
<nav>
<!-- Link to [Home - Page] -->
<a href="index.html" class="nav-link" id="nav-home">Home</a>
<!-- Link to [Contact - Page] -->
<a href="contact.html" class="nav-link" id="nav-contact">Contact</a>
</nav>
</div>
</header>
<div id="wrapper" class="container">
<!-- Contact Form -->
<!-- © Joshua M. Small -->
<section id="contact-info-details">
<p>
<h1>CONTACT US</h1>
<hr>
<!--Email-->
<h2>EMAIL</h2>
<a href="Contact-Us@gallivant.com">Contact-Us@gallivant.com</a>
<br>
<h2>PHONE</h2>
<!--Phone-->
<a href="tel:800-555-1234">1.800.555.1234</a>
<br>
<h2>LOCATION</h2>
Chapel Hill, N.C.</a>
</p>
<!-- Logo changes to Icon when window < 640px -->
<img src="assets/images/gallivant-logo.png" alt="Gallivant Logo" id="gallivant-logo-contact"></a>
</section>
<section id="contact-form-container">
<h2>Contact Form</h2>
<form id="contact-form" action="mailto:JMSmall@gmail.com" method="POST" enctype="text/plain">
<label for="name">Name</label>
<input type="text" id="name" name="Name" placeholder="Name" required="required">
<label for="email">Email</label>
<input type="email" id="email" name="E-Mail" placeholder="Email@gallivant.com" required="required">
<label for="subject">Subject</label>
<input type="text" id="subject" name="Subject" required="required"></input>
<label for="message">Message</label>
<textarea id="message" name="Message" required="required"></textarea>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</section>
</div>
<!-- || JAVASCRIPT || -->
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<!-- Compressed Foundation JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<!-- Moment -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment.min.js"
integrity="sha512-rmZcZsyhe0/MAjquhTgiUcb4d9knaFc7b5xAfju483gbEXTkeJRUMIPk6s3ySZMYUHEcjKbjLjyddGWMrNEvZg=="
crossorigin="anonymous"></script>
<!-- Personal JS file-->
<script src="assets/js/script.js"></script>
<!-- || FOOTER || -->
<!-- © Joshua M. Small -->
<footer class="footer">
<div id="footer-contact">
Chapel Hill, North Carolina
<a href="tel:800-555-1234">1.800.555.1234</a>
<a href="Contact-Us@gallivant.com">E-Mail</a>
</div>
<div id="copyright">© UNC's Team #4:
<a href="https://github.com/WasteOfADrumBum">Joshua M. Small</a>,
<a href="https://github.com/ChelSEA-88">Chelsea Haviland</a>,
<a href="https://github.com/gdobson93">Garrett Dobson</a> &
<a href="https://github.com/Tanner336">Tanner Cook</a>
</div>
</footer>
</body>
<!-- HTML Front-End Framework & CSS © Joshua M. Small -->
</html>