-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
331 lines (316 loc) · 17.3 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
<!--========================================================================
* ? ABOUT
* @author : VICTOR MALHOTRA
* @email : victorrmalhotra@gmail.com
* @repo : https://github.com/VictorMal001/PerfectHomePage.git
* @createdOn : 2-20-2022
* @description : A simple Home Page for my Computer. Uses the Custom New Tab URL chrome extenstion
* Assignment for West-MEC
*========================================================================-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Victor's perfect homepage">
<title>The Perfect HomePage</title>
<!--* Connect jQuery --->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<!--* CSS & MIN.CSS *--->
<link rel="stylesheet" href="CSS/main.css">
<link rel="stylesheet" href="CSS/carousel.css">
<link rel="stylesheet" href="CSS/navbar.css">
<!--* Carousel <link></link> --->
<link rel="stylesheet" href="plugins/OwlCarousel2-2.3.4/dist/assets/owl.carousel.min.css" />
</head>
<!--
* // 20/02/2022 - TAG: Today - Made the outline and horizontal scroll by scrolling the mouse, made the school links section and added my links for West-MEC
* // 21/02/2022 - TAG: Today - Made the toggle for West-MEC and Deer Valley High School School link pages. Got a Background image created for the West-MEC page.
*
*
*
*
*
*
-->
<body>
<!-- Container-->
<header style="position: fixed;
top: 0;
left: 0;
z-index: 11;">
<a href="https://victormal001.github.io/My-Portfolio/" target="_blank" rel="noopener noreferrer"><img class="logo" src="images/logos/DCVS-logos_transparent.png" height="130px" width="140px" alt="DCVS" /></a>
<nav>
<ul class="nav__links">
<li>
<a onclick="window.scrollBy(0,-1721.8)"><b>School Links</b></a>
</li>
<li>
<a onclick="window.scrollBy(0,1721.8)"><b>Youtube</b></a>
</li>
</ul>
</nav>
</header>
<div class="code_container" data-0="transform:translateX(0%);" data-1503="transform:translateX(-100%);">
<!--====================================================================================================-->
<!--========================================== SCHOOL SECTION ==========================================-->
<!--====================================================================================================-->
<section id="section_1" class="WestMEC_Background">
<!-- CONTENT FOR SCHOOL -->
<div class="content" id="school_content">
<h2>School Links</h2>
<p>
<div class="controll-tg">
<div class="toggle-btn" id="schools_toggle">
<div class="inner-circle">
</div>
</div>
</div>
<!-- <- West_MEC TILE CONTAINER -->
<div class="tile_container school_tile_container" id="WestMEC-SchoolLinks">
<h3>West-MEC Coding</h3>
<!-- <- FIRST TILE ROW -> -->
<div class="tile_row">
<!-- <- GOOGLE CLASSROOM TILE -->
<div class="tile" id="classroom_tile">
<!-- <- GOOGLE CLASSROOM IMAGE -> -->
<div class="tile_image" id="classroom_img">
<img draggable="false" src="images/School_Sites/West_MEC/googleClassroom.png" height="40px" width="40px" alt="Google Classroom">
</div>
<!-- <- END OF GOOGLE CLASSROOM IMAGE -> -->
<!-- <- GOOGLE CLASSROOM TEXT -> -->
<div class="tile_text" id="classroom_text">
Google Classroom
</div>
<!-- <- END OF GOOGLE CLASSROOM TEXT -> -->
</div>
<!-- <-END OF GOOGLE CLASSROOM TILE -> -->
<!-- <- FAMILYLINK GRADES TILE -> -->
<div class="tile" id="familyLink_tile">
<!-- <- FAMILYLINK IMAGE -> -->
<div class="tile_image" id="familyLink_img">
<img draggable="false" src="images/School_Sites/West_MEC/familyLink.svg" height="40px" width="40px" alt="Family Link">
</div>
<!-- <- END OF FAMILYLINK IMAGE -> -->
<!-- <- FAMILYLINK TEXT -> -->
<div class="tile_text" id="familyLink_text">
FamilyLink Grades
</div>
<!-- <- END OF FAMILYLINK TEXT -> -->
</div>
<!-- <- END OF FAMILYLINK TILE -> -->
</div>
<!-- <- END OF TILE ROW -> -->
</div>
<!-- <- END OF West-MEC TILE_CONTAINER -> -->
<!-- <- DVHS TILE_CONTAINER -->
<div class="tile_container school_tile_container hidden" id="DVHS-SchoolLinks">
<h3>Deer Valley High School</h3>
<!-- <- FIRST TILE ROW -> -->
<div class="tile_row">
<!-- <- CANVAS TILE -->
<div class="tile" id="canvas_tile">
<!-- <- CANVAS IMAGE -> -->
<div class="tile_image" id="canvas_img">
<img draggable="false" src="images/School_Sites/DVHS/canvas.png" height="40px" width="40px" alt="Google Classroom">
</div>
<!-- <- END OF CANVAS IMAGE -> -->
<!-- <- CANVAS TEXT -> -->
<div class="tile_text" id="canvas_text">Canvas
</div>
<!-- <- END OF CANVAS TEXT -> -->
</div>
<!-- <-END OF CANVAS TILE -> -->
<!-- <- POWERSCHOOLS TILE -> -->
<div class="tile" id="powerschools_tile">
<!-- <- POWERSCHOOLS IMAGE -> -->
<div class="tile_image" id="powerschools_img">
<img draggable="false" src="images/School_Sites/DVHS/powerschools.png" height="40px" width="40px" alt="Powerschools">
</div>
<!-- <- END OF POWERSCHOOLS IMAGE -> -->
<!-- <- POWERSCHOOLS TEXT -> -->
<div class="tile_text" id="powerschools_text">
PowerSchools
</div>
<!-- <- END OF POWERSCHOOLS TEXT -> -->
</div>
<!-- <- END OF POWERSCHOOLS TILE -> -->
<!-- <- DVUSD START PAGE TILE -> -->
<div class="tile" id="dvhs_startpage_tile">
<!-- <- POWERSCHOOLS IMAGE -> -->
<div class="tile_image" id="dvhs_startpage_img">
<img draggable="false" src="images/School_Sites/DVHS/dvhs_startpage.svg" height="40px" width="40px" alt="Powerschools">
</div>
<!-- <- END OF POWERSCHOOLS IMAGE -> -->
<!-- <- POWERSCHOOLS TEXT -> -->
<div class="tile_text" id="dvhs_startpage_text">
DVHS Start Page
</div>
<!-- <- END OF POWERSCHOOLS TEXT -> -->
</div>
<!-- <- END OF DVUSD START TILE -> -->
<!-- -->
<!-- <- MATHWAY PAGE TILE -> -->
<div class="tile" id="mathway_tile">
<!-- <- MATHWAY IMAGE -> -->
<div class="tile_image" id="mathway_img">
<img draggable="false" src="images/School_Sites/DVHS/mathway.png" height="40px" width="40px" alt="Mathway">
</div>
<!-- <- END OF MATHWAY IMAGE -> -->
<!-- <- MATHWAY TEXT -> -->
<div class="tile_text" id="mathway_text">
Mathway Calculator
</div>
<!-- <- END OF MATHWAY TEXT -> -->
</div>
<!-- <- END OF MAHTWAY TILE -> -->
</div>
<!-- <- END OF TILE ROW -> -->
<!-- <- TILE ROW 2 -> -->
<div class="tile_row">
<!-- <- KHAN ACADMEY TILE -> -->
<div class="tile" id="khan_academy_tile">
<!-- <- KAHN ACADEMY IMAGE -> -->
<div class="tile_image" id="khan_academy_img">
<img draggable="false" src="images/School_Sites/DVHS/khan_academy.png" height="40px" width="40px" alt="Khan Academy" />
</div>
<!-- <- END OF KAHN ACADEMY IMAGE -> -->
<!-- <- KHAN ACADEMY TEXT -> -->
<div class="tile_text" id="khan_academy_text">
Khan Academy
</div>
<!-- <- END OF KHAN ACADEMY TEXT -> -->
</div>
<!-- <- END OF KHAN ACADEMY TILE> --->
<!-- COLLEGE BOARD TILE --->
<div class="tile" id="college_board_tile">
<!-- <- KAHN ACADEMY IMAGE -> -->
<div class="tile_image" id="college_board_img">
<img draggable="false" src="images/School_Sites/DVHS/college_board.png" height="40px" width="40px" alt="Collage Board" />
</div>
<!-- <- END OF COLLEGE BOARD IMAGE -> -->
<!-- <- COLLEGE BOARD TEXT -> -->
<div class="tile_text" id="college_board_text">
AP College Board
</div>
<!-- <- END OF COLLEGE BOARD TEXT -> -->
</div>
<!-- <- END OF COLLEGE BOARD TILE> --->
<!-- COLLEGE BOARD TILE --->
<div class="tile" id="codehs_tile">
<!-- <- KAHN ACADEMY IMAGE -> -->
<div class="tile_image" id="codehs_img">
<img draggable="false" src="images/School_Sites/DVHS/codehs.png" height="40px" width="40px" alt="CodeHS" />
</div>
<!-- <- END OF COLLEGE BOARD IMAGE -> -->
<!-- <- CODEHS TEXT -> -->
<div class="tile_text" id="codehs_text">
CodeHS
</div>
<!-- <- END OF CODEHS TEXT -> -->
</div>
<!-- <- END OF CODEHS TILE> --->
<!-- SCHOOL CITY TILE --->
<div class="tile" id="school_city_tile">
<!-- <- SCHOOL CITY IMAGE -> -->
<div class="tile_image" id="school_city_img">
<img draggable="false" src="images/School_Sites/DVHS/school_city.png" height="40px" width="40px" alt="School City" />
</div>
<!-- <- END OF SCHOOL CITY IMAGE -> -->
<!-- <- SCHOOL CITY TEXT -> -->
<div class="tile_text" id="school_city_text">
School City
</div>
<!-- <- END OF SCHOOL CITY TEXT -> -->
</div>
<!-- <- END OF SCHOOL CITY TILE> --->
</div>
<!-- <- END OF TILE ROW 2 -> --->
</div>
<!-- <- END OF DVHS TILE_CONTAINER -> -->
</p>
</div>
<!-- End of Content 1 -->
</section>
<!--=========================== END OF SCHOOL SECTION ===========================-->
<!--todo MAKE ANOTHER SECTION FOR SECTION 2 -->
<section id="section_2">
<!-- Content 2 -->
<div class=" content ">
<h2>Youtube Videos</h2>
<p>
<!--* https://www.youtube.com/watch?v=vHm9_MN8jRA --->
<div class="container">
<div class="owl-carousel">
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=wX75Z-4MEoM&t=1384s" class="owl-video"></a>
</div>
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=vHm9_MN8jRA" class="owl-video"></a>
</div>
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=2KL-z9A56SQ" class="owl-video"></a>
</div>
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=FEmysQARWFU" class="owl-video"></a>
</div>
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=l9YxTXDiiFY" class="owl-video"></a>
</div>
<div class="item-video" data-merge="2">
<a href="https://www.youtube.com/watch?v=-JNRQ5HjNeI" class="owl-video"></a>
</div>
</div>
</div>
</p>
</div>
<!-- End of Content 2 -->
</section>
<!-- End of Secion 2 -->
<!-- Section 3 -->
<!-- <section> -->
<!-- Content 3 -->
<!-- <div class="content ">
<h2>Section Three</h2>
<p>
</p>
</div> -->
<!-- End of Content 3 -->
<!-- </section> -->
<!-- End of Secion 3 -->
<!-- Section 4 -->
<!-- <section>
<div class="content "> -->
<!-- Content 4 -->
<!-- <h2>Section Four</h2>
<p>
</p>
</div> -->
<!-- End of Content 4 -->
<!-- </section> -->
<!-- End of Secion 4 -->
</div>
<!-- End of Container -->
</body>
<!--* <- JAVASCRIPT -> --->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="js/animations.js"></script>
<script src="js/links/school_links.js"></script>
<!--* Side Scrolling --->
<script type="text/javascript " src="js/plugins/skrollr.js "></script>
<script type="text/javascript ">
var s = skrollr.init();
</script>
<!--* Owl Carousel --->
<script src="plugins/OwlCarousel2-2.3.4/dist/owl.carousel.min.js"></script>
<script type="text/javascript">
$(".owl-carousel").owlCarousel({
merge: true,
margin: 10,
video: true,
center: true,
});
</script>
<!--* Require JS --->
</html>