-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials.html
52 lines (47 loc) · 1.68 KB
/
tutorials.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rocket League Elements</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<button class="menu-button" onclick="toggleSidebar()">☰</button>
<div class="sidebar">
<nav>
<a href="index.html">Home</a>
<a href="bronze.html">Bronze</a>
<a href="silver.html">Silver</a>
<a href="gold.html">Gold</a>
<a href="platinum.html">Platinum</a>
<a href="diamond.html">Diamond</a>
<a href="champion.html">Champion</a>
<a href="grandchampion.html">Grand Champion</a>
<a href="trainingpacks.html">Training Packs</a>
<a href="tutorials.html">Tutorials</a>
</nav>
</div>
<section id="tutorials-videos">
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/bmnALGzj_LE?si=E0KxxBkp6fvnK0JX" title="45 Degree Flick" allowfullscreen></iframe>
</div>
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/2EgWdJcKxKI?si=O2tRELkP7-38Mc6n" title="Half Flip" allowfullscreen></iframe>
</div>
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/BPoKmo3h8fc?si=zNiRQFZVXf7-4bjQ" title="Kickoff" allowfullscreen></iframe>
</div>
<div class="embed-container">
<iframe src="https://www.youtube.com/embed/PbR1MMMFCTM?si=hGLtEdcl1yM-_FrC" title="Speed Flip" allowfullscreen></iframe>
</div>
</section>
<!-- Javascript for sidebar -->
<script>
function toggleSidebar() {
const sidebar = document.querySelector('.sidebar');
sidebar.classList.toggle('active');
}
</script>
</body>
</html>