-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
116 lines (110 loc) · 4.79 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title> Sailbot | Home </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="./photos/logo.png" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/all.css">
<script defer src="./js/all.js"></script>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="./css/animations.css">
<script defer src="./js/index.js"></script>
</head>
<body>
<header>
<nav id="top-navbar">
<a href="./index.html">
<img id="top-navbar-logo" src="./photos/logo.png" alt="Sailbot Word Logo">
</a>
<div id="navbar-links-container">
<a class="onThisPage" href="./index.html">About</a>
<a class="notOnThisPage" href="./app/ourteam.html">Our Team</a>
<a class="notOnThisPage" href="./app/fleet.html">Fleet</a>
<a class="notOnThisPage" href="./app/sponsorship.html">Sponsorship</a>
<a class="notOnThisPage" href="./app/gallery.html">Gallery</a>
<a class="notOnThisPage" href="./app/contact.html">Contact Us</a>
</div>
<img id="hamburger-icon" class="navhidden" src="./images/icons/Hamburger.svg" alt="hamburger icon">
</nav>
<nav class="navhidden" id="mobile-top-navbar">
<div id="mobile-navbar-links-container">
<a class="onThisPage" href="./index.html">About</a>
<a class="notOnThisPage" href="./app/ourteam.html">Our Team</a>
<a class="notOnThisPage" href="./app/fleet.html">Fleet</a>
<a class="notOnThisPage" href="./app/sponsorship.html">Sponsorship</a>
<a class="notOnThisPage" href="./app/gallery.html">Gallery</a>
<a class="notOnThisPage" href="./app/contact.html">Contact Us</a>
</div>
</nav>
</header>
<main>
<div id="hero-image">
<div id="title">
<h1>Sailbot</h1>
<h2>Virginia Tech Autonomous Sailboat Project Team</h2>
</div>
</div>
<h3 id="about-us-header" class="section-header">About Us</h3>
<p class="section-desccription">The SailBOT team at VT designs and manufactures fully autonomous
robotic sailboats and autonomous high-power electric motor boats for the International Robotic
Sailing Regatta and Promoting Electric Propulsion (PEP) competitions respectively.</p>
<div id="metrics-container">
<div class="metric">
<img src="./images/icons/members-icon.svg" alt="Members Icon">
<h2>20</h2>
<p>Members</p>
</div>
<div class="metric">
<img src="./images/icons/majors-icon.svg" alt="Majors Icon">
<h2>8 Major</h2>
<p>College of Engineering & College of Science</p>
</div>
<div class="metric">
<img src="./images/icons/yearfounded-icon.svg" alt="Year Founded Icon">
<h2>2012</h2>
<p>Year Founded</p>
</div>
</div>
<div id="images-container">
<img id="6" src="/images/gallery/7.png" alt="#7">
<img id="3" src="/images/gallery/4.png" alt="#4">
</div>
<h3 class="section-header">Sailbot</h3>
<p class="section-desccription">SailBOT at VT is divided into 6 sub-teams: Mechanical Engineering,
Electrical/ Computer Engineering, Computer Science, Naval Architecture/Ocean Engineering,
Sail/Aerospace Engineering, and PR/ Outreach. Each contributes to the design and creation of
both our autonomous sailboat and high-power electric motorboat. Feel free to add as many roles as you'd like.
</p>
</main>
<footer>
<nav id="bottom-navbar">
<div id="bottom-navbar-container">
<div id="follow-us">
<p class="footer-heading">Follow Us</p>
<div class="media-links footer-text-container">
<a target="_blank" href="">
Instagram
<img id="instagram-icon" class="footer-icon" src="./images/icons/instagram.svg" alt="Instagram Icon">
</a>
<a target="_blank" href="">
Youtube
<img id="youtube-icon" class="footer-icon" src="./images/icons/youtube.svg" alt="Youtube Icon">
</a>
</div>
</div>
<div id="contact-us">
<p id="contact-us-heading" class="footer-heading">Contact Us</p>
<div class="footer-text-container">
<p class="contact-us-subheader">General:</p>
<a target="_blank" href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</div>
<a href="./index.html"><img id="footer-logo" src="./images/logos/footer-boat.png" alt="boat logo"></a>
<img id="waves-img" src="./images/icons/waves.png" alt="waves">
</nav>
</footer>
</body>