-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·155 lines (145 loc) · 5.66 KB
/
index.html
File metadata and controls
executable file
·155 lines (145 loc) · 5.66 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>RSS Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:400,600,700,800&display=swap">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<script src="theme.js"></script>
</head>
<body id="home">
<!-- Navigation -->
<nav class="site-nav">
<div class="nav-inner">
<a href="#home" class="nav-brand">RSS Team [TEAM_NUMBER]</a>
<div class="nav-links">
<a href="#about" data-robot="🤖">About</a>
<a href="labs/" data-robot="🦾"><i class="fa fa-folder"></i> Labs</a>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" data-robot="🛸"><i class="fa fa-camera"></i> Videos</a>
<a href="https://github.com/mit-rss" data-robot="🔧"><i class="fa fa-github"></i> Github</a>
</div>
<button class="nav-toggle" id="navToggle"><i class="fa fa-bars"></i></button>
</div>
</nav>
<!-- Mobile Sidebar -->
<div class="sidebar-overlay" id="sidebarOverlay"></div>
<nav class="mobile-sidebar" id="mobileSidebar">
<a href="#about">About</a>
<a href="labs/">Labs</a>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">Videos</a>
<a href="https://github.com/mit-rss">Github</a>
</nav>
<!-- Intro / Loading Screen -->
<div class="intro-screen" id="introScreen">
<div class="intro-road"></div>
<div class="intro-car">
<div class="car-body">
<div class="car-cabin"></div>
<div class="car-wheel car-wheel-front"></div>
<div class="car-wheel car-wheel-back"></div>
<div class="car-exhaust"></div>
<div class="car-exhaust"></div>
<div class="car-exhaust"></div>
</div>
<div class="car-base"></div>
</div>
<div class="intro-text">RSS Team [TEAM_NUMBER]</div>
</div>
<!-- Hero Header -->
<header class="hero" style="background-image: url('./img/mit.jpg');">
<div class="hero-content">
<h1>Team [TEAM_NUMBER]!</h1>
<p>Innovation starts somewhere, so why not let it start here?</p>
<a href="https://youtu.be/xLZU6TcSmRo" class="hero-btn">Watch Our Story</a>
</div>
</header>
<!-- Team Members -->
<section class="section">
<h2 class="section-title">Meet the Team</h2>
<div class="team-grid">
<div class="team-card">
<img class="headshot" src="img/wall_e.jfif" alt="Tim Beaver">
<h4>Tim Beaver</h4>
<p class="email">tbeaver@mit.edu</p>
<p class="bio">These are some template bios; fill this in for each of your team members!</p>
</div>
<div class="team-card">
<img class="headshot" src="img/r2.jpg" alt="Tim Beaver">
<h4>Tim Beaver</h4>
<p class="email">tbeaver@mit.edu</p>
<p class="bio">These are some template bios; fill this in for each of your team members!</p>
</div>
<div class="team-card">
<img class="headshot" src="img/wall_e.jfif" alt="Tim Beaver">
<h4>Tim Beaver</h4>
<p class="email">tbeaver@mit.edu</p>
<p class="bio">These are some template bios; fill this in for each of your team members!</p>
</div>
<div class="team-card">
<img class="headshot" src="img/r2.jpg" alt="Tim Beaver">
<h4>Tim Beaver</h4>
<p class="email">tbeaver@mit.edu</p>
<p class="bio">These are some template bios; fill this in for each of your team members!</p>
</div>
<div class="team-card">
<img class="headshot" src="img/wall_e.jfif" alt="Tim Beaver">
<h4>Tim Beaver</h4>
<p class="email">tbeaver@mit.edu</p>
<p class="bio">These are some template bios; fill this in for each of your team members!</p>
</div>
</div>
</section>
<!-- About Section -->
<section class="about-section" id="about">
<div class="section">
<h2 class="section-title">About Us</h2>
<div class="features-grid">
<div class="feature-card">
<i class="fa fa-rocket"></i>
<h3>Our Mission</h3>
<p>Do something that is unique here. (You can change this to team values or something?)</p>
</div>
<div class="feature-card">
<i class="fa fa-cogs"></i>
<h3>What We Do</h3>
<p>The TAs are not that unique, so we are just writing a lot of filler things here so we look cool.</p>
</div>
<div class="feature-card">
<i class="fa fa-lightbulb-o"></i>
<h3>Our Values</h3>
<p>Si vos es pulchellus frigus hanc: et admonitus in hoc genere digna est. It tristis et non dederint tibi. Benediximus</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="site-footer">
<div class="footer-nav">
<a href="#home" class="btn"><i class="fa fa-arrow-up"></i> Back to top</a>
</div>
<p class="credit">Powered by <a href="https://www.w3schools.com/w3css/default.asp">w3.css</a></p>
</footer>
<!-- Theme Switcher -->
<button class="theme-toggle-btn" id="themeToggleBtn"><i class="fa fa-paint-brush"></i></button>
<div class="theme-panel" id="themePanel">
<h4>Accent Color</h4>
<div class="color-swatches">
<div class="color-swatch" data-color="red" title="Red"></div>
<div class="color-swatch" data-color="blue" title="Blue"></div>
<div class="color-swatch" data-color="teal" title="Teal"></div>
<div class="color-swatch" data-color="purple" title="Purple"></div>
<div class="color-swatch" data-color="orange" title="Orange"></div>
</div>
<div class="dark-toggle">
<span>Dark Mode</span>
<label class="switch">
<input type="checkbox" id="darkModeCheckbox">
<span class="slider"></span>
</label>
</div>
</div>
</body>
</html>