-
Notifications
You must be signed in to change notification settings - Fork 0
/
courses.html
78 lines (62 loc) · 2.57 KB
/
courses.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
subtitles<!DOCTYPE html>
<html lang="en">
<head>
<title>Courses</title>
</head>
<body style="font-family: 'DM Sans', sans-serif">
<details>
<summary>Menu</summary>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="login.html">Login</a></li>
</ul>
</details>
<br> <br>
<h1>Learn For Free 😍</h1> <br> <br>
<details>
<summary>Discover</summary> <br> <br>
<details>
<summary>Math</summary>
<video controls width="150" height="120" src="videos/math1.mp4">
<source src="videos/math1.mp4">
<track kind="subtitles" src="videos/math1.vtt" srclang="en">
</video>
<video src="videos/math2.mp4" width="150" height="120" controls>
<source src="videos/math2.mp4">
<track kind="subtitles" src="videos/math2.vtt" srclang="en">
</video>
<video src="videos/math3.mp4" width="150" height="120" controls>
<source src="videos/math3.mp4">
<track kind="subtitles" src="videos/math3.vtt" srclang="en">
</video>
</details> <br>
<details>
<summary>Programming</summary>
<video src="videos/programming.mp4" width="150" height="120" controls>
<source src="videos/programming.mp4">
<track kind="subtitles" src="videos/programming.vtt" srclang="en">
</video>
<video src="videos/programming1.mp4" width="150" height="120" controls>
<source src="videos/programming1.mp4">
<track kind="subtitles" src="videos/programming1.vtt" srclang="en">
</video>
</details> <br>
<details>
<summary>Web Devolopment</summary>
<video src="videos/webDev.mp4" width="150" height="120" controls>
<source src="videos/webDev.mp4">
<track kind="captions" src="videos/webDev.vtt" srclang="en">
</video>
<video src="videos/webDev1.mp4" width="150" height="120" controls>
<source src="videos/webDev1.mp4">
<track kind="captions" src="videos/webDev1.vtt" srclang="en">
</video>
<video src="videos/webDev2.mp4" width="150" height="120" controls>
<source src="videos/webDev2.mp4">
<track kind="captions" src="videos/webDev2.vtt" srclang="en">
</video>
</details> <br>
</details>
</body>
</html>