-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearning.html
38 lines (37 loc) · 1.3 KB
/
learning.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Learning Resources</title>
<link rel="stylesheet" href="learning.css">
</head>
<body>
<header>
<h1>Learning Resources</h1>
</header>
<main>
<section>
<h2>Popular Playlists</h2>
<ul id="playlist-container">
<li>
<a href="https://www.youtube.com/playlist?list=PLsPUh22kYmNDRYfImV3BzNZ6yTwhIpe0k" target="_blank">Time space</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PL8dPuuaLjXtPAJr1ysd5yGIyiSFuh0mIL" target="_blank">Crash Course Astronomy</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PL2aBZuCeDwlQTMjNAeDU5wVqqm4KPECIT" target="_blank">Nasa Hubble Telescope</a>
</li>
<li>
<a href="https://www.youtube.com/playlist?list=PL2aBZuCeDwlQAGW6uo18_FMl0eIhkeOOv" target="_blank">Nasa Documentries</a>
</li>
</ul>
</section>
</main>
<footer>
<p>©exoverse pvt.ltd</p>
</footer>
<script src="learning.js"></script>
</body>
</html>