-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
101 lines (90 loc) · 5.02 KB
/
Copy pathvideos.html
File metadata and controls
101 lines (90 loc) · 5.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Videos | Skillsprout</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="styles.css?v=7">
</head>
<body class="skillsprout-page videos-page">
<div class="container position-relative z-3 px-3">
<nav class="navbar navbar-expand-xl navbar-light floating-nav mt-4" aria-label="Main navigation">
<div class="container-fluid">
<a class="navbar-brand d-flex flex-column" href="index.html">
<span class="school-brand"><i class="fa-solid fa-seedling mx-1"></i> Skillsprout</span>
<span class="school-subbrand">Learning Videos</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navMenu"
aria-controls="navMenu" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navMenu">
<div class="navbar-nav">
<a class="nav-link" href="index.html"><i class="fa-solid fa-house"></i> Home</a>
<a class="nav-link" href="geometry.html"><i class="fa-solid fa-draw-polygon"></i> Geometry</a>
<a class="nav-link" href="periodic.html"><i class="fa-solid fa-flask"></i> Periodic Table</a>
<a class="nav-link" href="geography.html"><i class="fa-solid fa-earth-americas"></i>
Geography</a>
<a class="nav-link" href="snake.html"><i class="fa-solid fa-gamepad"></i> Snake</a>
<a class="nav-link" href="scratch.html"><i class="fa-solid fa-puzzle-piece"></i> Scratch</a>
<a class="nav-link" href="page2.html"><i class="fa-solid fa-tv"></i> Channels</a>
<a class="nav-link active" href="videos.html"><i class="fa-solid fa-film"></i> Videos</a>
</div>
</div>
</div>
</nav>
</div>
<main class="content-main">
<div class="container">
<a class="back-link" href="index.html"><i class="fa-solid fa-arrow-left"></i> Back Home</a>
<section class="page-header text-center">
<p class="hero-kicker">Watch and learn</p>
<h1 class="section-title">Learning Videos 🎬</h1>
<p class="page-subtitle">Watch, learn, and keep growing your skills!</p>
</section>
<section class="video-grid" aria-label="Learning videos">
<article class="sprout-card video-card">
<h2><i class="fa-solid fa-circle-play"></i> Video 1</h2>
<p>Start with a short learning video.</p>
<video controls preload="metadata">
<source src="videos/1.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</article>
<article class="sprout-card video-card">
<h2><i class="fa-solid fa-circle-play"></i> Video 2</h2>
<p>Keep practicing with another activity.</p>
<video controls preload="metadata">
<source src="videos/2.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</article>
<article class="sprout-card video-card">
<h2><i class="fa-solid fa-circle-play"></i> Video 3</h2>
<p>Build your skills step by step.</p>
<video controls preload="metadata">
<source src="videos/3.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</article>
<article class="sprout-card video-card">
<h2><i class="fa-solid fa-circle-play"></i> Video 4</h2>
<p>Review and keep learning.</p>
<video controls preload="metadata">
<source src="videos/4.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</article>
</section>
</div>
</main>
<footer class="sprout-footer text-center">
<div class="container">
<p class="mb-0">Skillsprout grows small practice into confident learning.</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>