forked from thewaxmango/tutor-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
414 lines (385 loc) · 25.8 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
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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TuTuring</title>
<link rel="icon" type="image/x-icon" href="./static/assets/favicon.ico">
<!--link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootswatch/5.2.3/zephyr/bootstrap.min.css" integrity="sha512-dcTg+pv6j02FTyko5ua8nsnARs/l4u43vmnbeVgkFWB5wdLgfUq4CEotFWOlTE4XK7FfVriWj7BrpqET/a+SJQ==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="./static/styles.css">
<link rel="stylesheet" href="./static/custom.css">
</head>
<body style="font-family: 'Lexend', sans-serif; font-weight: 400">
<header id="header" class="navbar navbar-expand navbar-light border-bottom user-select-none position-fixed w-100 bg-white" style="z-index: 999; opacity: 90%">
<div class="container-fluid" style="width: 95%">
<a href="./index.html" class="navbar-brand nav-link typewrite" data-period="1500" data-type='["tutoring", "jumpstart", "acceleration", "engaging"]'>
>>> <span class="wrap"></span>
</a>
<ul class="navbar-nav">
<li class="nav-item d-none d-md-block active">
<a href="./index.html" class="nav-link text-dark active">• home</a>
</li>
<li class="nav-item d-none d-md-block">
<a href="./courses.html" class="nav-link text-dark">• courses</a>
</li>
<li class="nav-item d-none d-md-block">
<a href="./register.html" class="nav-link text-dark">• register</a>
</li>
<!-- <li class="nav-item d-none d-md-block">
<a href="./tutoring.html" class="nav-link text-dark">• tutoring</a>
</li> -->
<li class="nav-item d-none d-md-block">
<a href="./about.html" class="nav-link text-dark">• about</a>
</li>
<li class="nav-item d-none d-md-block">
<a href="./contact.html" class="nav-link text-dark">• contact</a>
</li>
<li class="nav-item dropdown d-block d-md-none">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">
<i class="h6 bi-list m-0"></i>
</a>
<ul class="dropdown-menu" style="transform: translateX(-50%)">
<li><a href="./index.html" class="dropdown-item text-dark">• home</a></li>
<li><a href="./courses.html" class="dropdown-item text-dark">• courses</a></li>
<li><a href="./register.html" class="dropdown-item text-dark">• register</a></li>
<!-- <li><a href="./tutoring.html" class="dropdown-item text-dark">• tutoring</a></li> -->
<li><a href="./about.html" class="dropdown-item text-dark">• about</a></li>
<li><a href="./contact.html" class="dropdown-item text-dark">• contact</a></li>
</ul>
</li>
</ul>
</div>
</header>
<div id="banner" class="w-100 text-center py-2 bg-danger" style="position: fixed; top: 4.2rem; z-index: 1; opacity: 0.8; color: white;">
<a class="link-style-1-yellow" href="./register.html" style="text-decoration: none;">Register</a> before 8/24/2024 for a $30 discount!
</div>
<div class="container-fluid">
<div id="home-top" class="row">
<div class="jumbotron jumbotron-fluid" style="margin-top: 7rem">
<div class="container">
<h1 class="display-3" style="margin-bottom: 1rem; margin-top: 1.5rem;">TuTuring</h1>
<p class="lead">Quality curriculum. Motivated instructors. Cultivating curiosity.</p>
</div>
</div>
</div>
<div class="container">
<div class="card mw-100" style="overflow: hidden; min-height: 8rem;">
<div id="tutor-carousel" class="mw-100 carousel slide mb-6" data-bs-ride="carousel" style="min-height: 8rem;">
<div class="carousel-indicators" style="margin-bottom: 0.2rem;">
<button type="button" data-bs-target="#tutor-carousel" data-bs-slide-to="0" class="active" aria-label="Slide 1" aria-current="true"></button>
<button type="button" data-bs-target="#tutor-carousel" data-bs-slide-to="1" aria-label="Slide 2" class=""></button>
<button type="button" data-bs-target="#tutor-carousel" data-bs-slide-to="2" aria-label="Slide 3" class=""></button>
<button type="button" data-bs-target="#tutor-carousel" data-bs-slide-to="3" aria-label="Slide 4" class=""></button>
</div>
<div class="carousel-inner" style="height: 8rem">
<div class="carousel-item h-100 active">
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false">
<rect width="100%" height="100%" fill="navy"></rect>
</svg>
<div class="container">
<div class="caption">
<h1>$25/hour</h1>
<h6 class="opacity-75">
any class, no catches
</h6 >
</div>
</div>
</div>
<div class="carousel-item h-100">
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false">
<rect width="100%" height="100%" fill="navy"></rect>
</svg>
<div class="container">
<div class="caption">
<h4>
Experienced Mentors
</h4>
<h6 class="opacity-75">
USACO Platinum-Gold, academic leaders from TJ
</h6 >
</div>
</div>
</div>
<div class="carousel-item h-100">
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false">
<rect width="100%" height="100%" fill="navy"></rect>
</svg>
<div class="container">
<div class="caption">
<h1>Free Trial</h1>
<h6 class="opacity-75">
try out the first class to see if it's right for you
</h6 >
</div>
</div>
</div>
<div class="carousel-item h-100">
<svg class="bd-placeholder-img" width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" preserveAspectRatio="xMidYMid slice" focusable="false">
<rect width="100%" height="100%" fill="navy"></rect>
</svg>
<div class="container">
<div class="caption">
<h1>3 to 1</h1>
<h6 class="opacity-75">
student to teacher ratio
</h6>
</div>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#tutor-carousel" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#tutor-carousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</div>
<div id="about-section" class="container my-5">
<div class="row" style="justify-content: center">
<div class="col" style="min-width: 55%;">
<h3>
<a class="link-style-2-blue link-style-2-reverse" href="./about.html" style="text-decoration: none; color: inherit;">
>>> who we are
</a>
</h3>
<p>
We are Thomas Jefferson High School graduates and rising college freshmen, all majoring in computer science. We have competed together in multiple competitive programming and AI competitions including Stanford's Proco, MIT's Battlecode, UPenn's PClassic, along with many others, and winning a total of over $5000.
<br><br>
We hope that our courses will provide an affordable way for students of any age to prepare themselves for further math and computer science learning, as well as a way to get into the lucrative field of artificial intelligence and machine learning.
</p>
</div>
<div class="col-5" style="max-width: 50em; min-width:20em; flex-grow: 0.8;">
<div class="card user-select-none" style="min-width: 100%; overflow:hidden">
<img class="card-img" src="./static/assets/battlecode.jpg" alt="lecture-image">
</div>
</div>
</div>
</div>
<div id="courses-section" class="container my-5 text-end">
<h3>
<a class="link-style-2-red" href="./courses.html" style="text-decoration: none; color: inherit;">
courses <<<
</a>
</h3>
<p>
We offer
<a class="link-style-1-red" href="./tutoring.html" style="text-decoration: none;">online lessons</a>
taught by our four instructors.
</p>
<div class="row d-flex column-gap-0 text-start" style="justify-content: center; hyphens: auto;">
<div class="col-auto my-1" style="min-height: 100%; width: 85%; max-width: min(45vh, 20em);">
<div class="card h-100" style="min-width: 100%">
<div class="card-body">
<h5 class="card-title">
Intro to Python
</h5>
<p class="card-text">
<span class="badge text-bg-info">Programming</span>
<span class="badge text-bg-success">Beginner</span>
</p>
<p class="card-text">
Introduction to coding with the Python language; teaching basic concepts such as variables, lists, and loops.
<br><br>
Prepares students for computer science at the level of AP Computer Science.
</p>
</div>
<div class="card-footer">
<a class="text-muted" href="./courses.html">Course Details</a>
</div>
</div>
</div>
<div class="col-auto my-1" style="min-height: 100%; width: 85%; max-width: min(45vh, 20em);">
<div class="card h-100" style="min-width: 100%">
<div class="card-body px-4">
<h5 class="card-title">
Beginner Algorithms and Data Structures
</h5>
<p class="card-text">
<span class="badge text-bg-info">Programming</span>
<span class="badge" style="background-color:rgb(255, 191, 88)">Intermediate</span>
</p>
<p class="card-text">
This class teaches foundational algorithms that are essential for any computer science student.
<br><br>
These topics are also prominent in AP CS-A, competitive programming, and coding interviews.
</p>
</div>
<div class="card-footer">
<a class="text-muted" href="./courses.html">Course Details</a>
</div>
</div>
</div>
<div class="col-auto my-1" style="min-height: 100%; width: 85%; max-width: min(45vh, 20em);">
<div class="card h-100" style="min-width: 100%">
<div class="card-body px-4">
<h5 class="card-title">
Intermediate Algorithms and Data Structures
</h5>
<p class="card-text">
<span class="badge text-bg-info">Programming</span>
<span class="badge text-bg-danger">Advanced</span>
</p>
<p class="card-text">
This class teaches more complex algorithms which commonly show up in USACO Gold level contests and higher.
<br><br>
Useful for excelling at competitive programming and interviews.
</p>
</div>
<div class="card-footer">
<a class="text-muted" href="./courses.html">Course Details</a>
</div>
</div>
</div>
<div class="col-auto my-1" style="min-height: 100%; width: 85%; max-width: min(45vh, 20em);">
<div class="card h-100" style="min-width: 100%">
<div class="card-body">
<h5 class="card-title">
Intro to Artificial Intelligence
</h5>
<p class="card-text">
<span class="badge text-bg-info">Programming</span>
<span class="badge text-bg-danger">Advanced</span>
</p>
<p class="card-text">
This classes teaches basics of AI and optimization, critical for understanding any modern application of AI/machine learning.
<br><br>
Also prepares students for high level competitions like Battlecode.
</p>
</div>
<div class="card-footer">
<a class="text-muted" href="./courses.html">Course Details</a>
</div>
</div>
</div>
</div>
</div>
<!-- <div id="tutoring-section" class="container my-5" style="padding-top:0.25rem;">
<div class="row" style="justify-content: center">
<div class="col-6" style="max-width: 50em; min-width:20em; flex-grow: 0.8;">
<div class="card user-select-none" style="min-width: 100%; overflow:hidden">
<img class="card-img" src="./static/assets/lecture.png" alt="lecture-image">
</div>
<br><br>
</div>
<div class="col" style="min-width: 50%">
<h3>
<a class="link-style-2-green link-style-2-reverse" href="./tutoring.html" style="text-decoration: none; color: inherit;">
>>> tutoring
</a>
</h3>
<p>
<a class="link-style-1-green" href="./tutoring.html" style="text-decoration: none;">Tutoring services</a>
available upon request - both online and in person.<br>
<a class="link-style-1-purple" href="./contact.html" style="text-decoration: none;">Contact us</a>
for a free consultation.
</p>
<div class="row text-start">
<div class="col-lg-12">
<div class="bs-component">
<div class="accordion" id="tutoring-accordion">
<div class="accordion-item">
<h2 class="accordion-header" id="headingOne">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
<i class="h5 my-2 mx-2 bi-person"></i><b>one-on-one lessons</b>
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse" aria-labelledby="headingOne" data-bs-parent="#tutoring-accordion">
<div class="accordion-body">
We offer one on one lessons with any instructor of your choice on any subject of your choice.
<br><br>
Topics and other information can be found on the
<a class="link-style-1-green" href="./tutoring.html" style="text-decoration: none;">tutoring</a> page.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingTwo">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<i class="h5 my-2 mx-2 bi-people"></i><b>small-group lessons</b>
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" aria-labelledby="headingTwo" data-bs-parent="#tutoring-accordion">
<div class="accordion-body">
Aside from one on one lessons, we also have the option for small group lessons for a discount group price.
<br><br>
Topics and more information can be found on the
<a class="link-style-1-green" href="./tutoring.html" style="text-decoration: none;">tutoring</a> page.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header" id="headingThree">
<button class="accordion-button collapsed py-2" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<i class="h5 my-2 mx-2 bi-journal-bookmark"></i><b>material</b>
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" aria-labelledby="headingThree" data-bs-parent="#tutoring-accordion">
<div class="accordion-body">
We have curricula for all topics,
but we are also able to teach off of materials that students provide (e.g. from a book or along with a class).
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> -->
<div id="contact-section" class="container my-5">
<h3>
<a class="link-style-2-purple" href="./contact.html" style="text-decoration: none; color: inherit;">
>>> contact us
</a>
</h3>
<p>
See our contact information on
<a class="link-style-1-purple" href="./contact.html" style="text-decoration: none;">this page</a>.
</p>
</div>
</div>
<div id="footer" class="container">
<footer class="d-flex flex-wrap justify-content-between align-items-center py-3 my-4 border-top">
<div class="col-md-4 d-flex align-items-center">
<a href="https://github.com/thewaxmango/tutor-site" class="mb-3 me-2 mb-md-0 text-body-secondary text-decoration-none lh-1">
<i class="h4 m-0 bi-github"></i>
</a>
<span class="mb-3 mb-md-0 text-body-secondary">site by Max Wang, a <i>TuTuring</i> instructor</span>
</div>
<ul class="nav col-md-4 justify-content-end list-unstyled d-flex">
<li class="ms-3" style="display:none">
<a class="text-body-secondary" href="#">
<i class="h4 m-0 bi-discord"></i>
</a>
</li>
<li class="ms-3" style="display:none">
<a class="text-body-secondary" href="#">
<i class="h4 m-0 bi-facebook"></i>
</a>
</li>
<li class="ms-3" style="display:none">
<a class="text-body-secondary" href="#">
<i class="h4 m-0 bi-youtube"></i>
</a>
</li>
<li class="ms-3">
<a class="text-body-secondary" href="#">
<i class="h4 m-0 bi-chevron-double-up"></i>
</a>
</li>
</ul>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="./static/index.js"></script>
</body>
</html>