-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
48 lines (41 loc) · 1.79 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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-173614963-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-173614963-1');
</script>
<meta charset="utf-8">
<title>Major Map Initiative</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="img/map.ico">
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js" ></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" ></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" ></script>
</head>
<body id = "grad">
<div class = "container" id = "front_page">
<div class = "row" >
<div class = "col" >
<h1 id = "logo">
<img src = "./img/triton_logo.png" height="55"> </img>
Major Map Initiative
</h1>
<div id="navbar"></div>
<p>
To report a bug, or send a suggestion, please send us an email: <a href = "mailto: [email protected]" target="_blank">[email protected]</a>.
</p>
<p>If you are interested in joining, check the about page and send us an email.</p>
</div>
</div>
</div>
</body>
<script src="./js/loadNav.js"></script>
</html>