-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·75 lines (63 loc) · 3.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>CUAUV</title>
<!-- Script -->
<script src="js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="js/includes.js" type="text/javascript"></script>
<!-- Analytics -->
<!--<script async src="https://www.googletagmanager.com/gtag/js?id=UA-129129329-1"></script>
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,400" rel="stylesheet">
<script src="https://use.fontawesome.com/62036b53a1.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/tablet.css">
<link rel="stylesheet" href="css/mobile.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="images/favicon-16x16.png" sizes="16x16" />
</head>
<body>
<div class="navbar sticky"></div>
<div id="ham-menu" class="hamburger-menu menu-hidden"></div>
<div class="container home">
<div class="main-splash">
<span>
<img src="Logo.svg"></img>
<h5 style="text-transform: uppercase">Cornell University Autonomous Underwater Vehicle</h5>
</span>
</div>
<div class="row panels">
<a href="vehicles.html" id="vehicles" class="three columns panel">
<span><h2 style="text-transform: uppercase">See Our Submarines</h2></span>
</a>
<a href="team.html" id="team" class="three columns panel">
<span><h2 style="text-transform: uppercase">Meet the Team</h2></span>
</a>
<a href="outreach.html" id="outreach" class="three columns panel">
<span><h2 style="text-transform: uppercase">See us in the Community</h2></span>
</a>
<a href="sponsors.html" id="sponsors" class="three columns panel">
<span><h2 style="text-transform: uppercase">Sponsor Us</h2></span>
</a>
</div>
<div class="row">
<div id="announcements" class="twelve columns">
<p>Support us by donating to CUAUV</p>
</div>
</div>
</div>
</body>
</html>