-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
314 lines (291 loc) · 15.1 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8”>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./images/navLogo.png">
<title>Contact</title>
<!-- EXTERNAL STYLESHEET -->
<link rel="stylesheet" href="./css/contactStyle.css">
<!-- FONTAWESOME KIT -->
<script
src="https://kit.fontawesome.com/b526bbc698.js"
crossorigin="anonymous"
></script>
<!-- JAVASCRIPT INTERSECTION OBSERVER TAG -->
<script defer src="./js/app.js"></script>
<script src="./js/disableLinks.js" defer></script>
<!-- LEAFLET CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI="
crossorigin="">
<!-- LEAFLET JS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM="
crossorigin=""></script>
</head>
<body>
<!-- NAV SECTION STARTS -->
<header class="header">
<a href="https://marqui.on.fleek.co">
<img
height="80px"
width=”80px"
src="./images/navLogo.png"
alt="home logo"
></a>
<nav class="navbar">
<ul class="navbar-list">
<li>
<a class="navbar-link" href="./index.html">Home</a>
</li>
<li>
<a class="navbar-link" href="https://3jsearth.on.fleek.co/3Dearth.html"
>Projects</a
>
</li>
<li>
<a class="navbar-link" href="./contact.html"
>Contact</a
>
</li>
</ul>
</nav>
<!-- MOBILE HAMBURGER/CLOSE ICONS -->
<div class="mobile-navbar-btn hiddenAlt">
<ion-icon name="menu-outline" class="mobile-nav-icon"></ion-icon>
<ion-icon name="close-outline" class="mobile-nav-icon"></ion-icon>
</div>
</header>
<!-- NAV SECTION ENDS -->
<!-- CANVAS TAG -->
<!-- <canvas id="canvas1"></canvas> -->
<!-- CONTENT SECTION STARTS -->
<p id="information1" style="align-items: center; text-align: center; margin-top: 35px; margin-bottom: 20px; font-weight: bolder;">Contact</p>
<!-- <h4 style="text-align: center; font-weight: 900; margin-top: 0px; padding-top: 10px;">*This form submission is protected by <span class="hidden3">reCAPTCHA</span> and the Google <a href="https://policies.google.com/privacy" class="hidden3">Privacy Policy</a> and <a href="https://policies.google.com/terms" class="hidden3">Terms of Service</a> apply. <span class="hidden3">reCAPTCHA</span> uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website.</h4> -->
<div class="row">
<div class="column">
<!-- <img src="./images/map.jpg" style="width: 100%" /> -->
<div id="map" style="height: 300px; width: 100%"></div>
</div>
<div class="column">
<!-- CONTACT FORM STARTS -->
<form style="margin-bottom: 120px;" action="https://formsubmit.co/[email protected]" method="POST">
<label for="fname">
<span class="contact2 hidden">F</span>
<span class="contact2 hidden">i</span>
<span class="contact2 hidden">r</span>
<span class="contact2 hidden">s</span>
<span class="contact2 hidden">t</span>
<span style="margin-left: 5px; padding: 0px;" class="contact2 hidden">N</span>
<span class="contact2 hidden">a</span>
<span class="contact2 hidden">m</span>
<span class="contact2 hidden">e</span>
</label>
<input
type="text"
id="fname"
name="firstname"
placeholder="Type your first name..."
required
><br><br>
<label for="lname">
<span class="contact3 hidden">L</span>
<span class="contact3 hidden">a</span>
<span class="contact3 hidden">s</span>
<span class="contact3 hidden">t</span>
<span style="margin-left: 5px; padding: 0px;" class="contact3 hidden">N</span>
<span class="contact3 hidden">a</span>
<span class="contact3 hidden">m</span>
<span class="contact3 hidden">e</span>
</label>
<input
type="text"
id="lname"
name="lastname"
placeholder="Type your last name..."
style="margin-left: 5px;"
required
><br><br>
<label for="country">
<span class="contact35 hidden">E</span>
<span class="contact35 hidden">m</span>
<span class="contact35 hidden">a</span>
<span class="contact35 hidden">i</span>
<span class="contact35 hidden">l</span>
</label>
<input
type="email"
id="em"
name="_autoresponse"
placeholder="Type your email address..."
style="margin-left: 45px;"
required
><br><br>
<input type="hidden" name="_next" value="https://marqui.on.fleek.co/thankyou.html">
<label for="country">
<span class="contact4 hidden">C</span>
<span class="contact4 hidden">o</span>
<span class="contact4 hidden">u</span>
<span class="contact4 hidden">n</span>
<span class="contact4 hidden">t</span>
<span class="contact4 hidden">r</span>
<span class="contact4 hidden">y</span>
</label>
<select style="cursor: pointer; margin-left: 26px;" id="country" name="country" required>
<option size=”10” value="usa">USA</option>
<option value="canada">Canada</option>
<option value="asia">Asia</option>
<option value="australia">Australia</option>
<option value="europe">Europe</option>
<option value="india">India</option>
<option value="africa">Africa</option>
<option value="antarctica">Antarctica</option>
<option value="south america">South America</option>
<option value="mexico">Mexico</option>
</select
><br><br>
<label for="subject">
<span class="contact5 hidden">S</span>
<span class="contact5 hidden">u</span>
<span class="contact5 hidden">b</span>
<span class="contact5 hidden">j</span>
<span class="contact5 hidden">e</span>
<span class="contact5 hidden">c</span>
<span class="contact5 hidden">t</span>
</label>
<textarea
id="subject"
name="subject"
placeholder="Type your message..."
style="height: 245px; margin-left: 27px;"
required
></textarea
><br><br>
<h4 style="text-align: center; font-weight: 900; margin-top: 0px; padding-top: 10px;">*This form submission is protected by <span class="hidden3">reCAPTCHA</span> and the Google <a href="https://policies.google.com/privacy" class="hidden3">Privacy Policy</a> and <a href="https://policies.google.com/terms" class="hidden3">Terms of Service</a> apply. <span class="hidden3">reCAPTCHA</span> uses an advanced risk analysis engine and adaptive challenges to keep malicious software from engaging in abusive activities on your website.</h4>
<br><br>
<input style="cursor: pointer; margin-bottom: 10px;" class="contact6 hidden" type="submit" name="submit" value="Submit">
<br><br>
<br><br>
<p style="font-size: 17px; font-weight: 900;">Cloaked #: <a href="tel:2194014642">219-401-4642</a></p>
<br>
<p style="font-size: 17px; font-weight: 900;">Cloaked Email: <a href = "mailto: [email protected]">[email protected]</a></p>
<h4 style="text-align: center; font-weight: 900; margin-top: 0px; padding-top: 10px;">*Cloaked uses <a href=”” id=”link1”>ECC 25519</a> , <a href=”” id=”link2”>Argon2</a> , & <a href=”” id=”link3”>Xsalsa20-Poly1305</a> for hashing and encryption approaches for user data, to remain highly secure.</h4>
</form>
<!-- CONTACT FORM ENDS -->
</div>
</div>
<!-- CONTENT SECTION ENDS -->
<!-- CREATE MAP OF LOCATION -->
<script>
<!--var map = L.map('map').setView([42.01, -93.05], 8);-->
// Creating map options
var mapOptions = {
center: [42.00, -93.00],
zoom: 6,
zoomControl: false
}
// Creating a map object
var map = new L.map('map', mapOptions);
// zoom control options
var zoomOptions = {
zoomInText: '+',
zoomOutText: '-',
};
// Creating zoom control
var zoom = L.control.zoom(zoomOptions);
// Adding zoom control to the map
zoom.addTo(map);
<!--L.control.zoom(<Control.Zoom options> zoomControl: true );-->
L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', {
maxZoom: 17,
attribution: ' | © <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a>'
}).addTo(map);
</script>
<!-- TOP OF PAGE BUTTON STARTS -->
<!-- <button onclick="topFunction()" id="myBtn" title="Go to top">↑
</button> -->
<!-- TOP OF PAGE BUTTON ENDS -->
<!-- FOOTER SECTION STARTS -->
<footer class="footer-social-overlap footer-social-icons-wrapper">
<a
href="https://github.com/Marqui-13"
class="generic-anchor"
target="_blank"
rel="noreferrer noopener"
title="GitHub"
><i class="fa-brands fa-github-alt logo"></i></a>
<a
id="accessibilityWidget"
class="generic-anchor"
target="_blank"
rel="noreferrer noopener"
title="Accessibility"
><i class="fa-solid fa-universal-access logo"></i></a>
</footer>
<div class="flex-rw">
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">C</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">o</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">p</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">y</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">r</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">i</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">g</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">h</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">t</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;"><i class="fa fa-copyright"></i></span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">2</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">0</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">2</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">4</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">-</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">M</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">a</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">r</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">q</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">u</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">i</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">v</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">i</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">o</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">n</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">O</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">r</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">r</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">-</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">A</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">l</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">l</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">R</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">i</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">g</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">h</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">t</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">s</span>
<span class="footer0 hidden" style="margin-left: 5px; padding: 0px;">R</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">e</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">s</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">e</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">r</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">v</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">e</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">d</span>
<span class="footer0 hidden" style="margin: 0px; padding: 0px;">.</span>
</div>
<!-- FOOTER SECTION ENDS -->
<!-- JAVASCRIPT SRC TAGS -->
<script
type="module"
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"
></script>
<script
nomodule
src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"
></script>
<script src="./js/main.js"></script>
<script src="./js/logic.js"></script>
<script src="./js/disableLinks.js"></script>
<script>(function(d){var s = d.createElement("script");s.setAttribute("data-mobile", true);s.setAttribute("data-trigger", "accessibilityWidget");s.setAttribute("data-position", 2);s.setAttribute("data-account", "ZfnkBcqmwg");s.setAttribute("src", "https://cdn.userway.org/widget.js");(d.body).appendChild(s);})(document)</script><noscript>Please ensure Javascript is enabled for purposes of <a href="https://userway.org">website accessibility</a></noscript>
</body>
</html>