forked from param-code/Sigma-Web-Development-Course
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuick_Quiz10.html
More file actions
43 lines (43 loc) · 4.25 KB
/
Copy pathQuick_Quiz10.html
File metadata and controls
43 lines (43 loc) · 4.25 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
<!--
Create a website which shows videos of different category and audios of different categories.
You can use YouTube videos in the iframe using YouTube's embedding feature
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quick Quiz</title>
<link rel="stylesheet" href="style10.css">
<script src="script10.js"></script>
</head>
<body>
</div>
<h1>Categories</h1>
<div>
<h2>videos</h2>
<h3>Offline videos</h3>
<video src="video.mp4" height="250" controls poster="woman.jpg">Video</video>
<img src="diving-goggles-svgrepo-com.svg" height="250" alt="svg">
<h3>Online videos</h3>
<iframe width="430" height="250" src="https://www.youtube.com/embed/tVzUXW6siu0?list=PLu0W_9lII9agq5TrH9XLIKQvv0iaF2X3w" title="Installing VS Code & How Websites Work | Sigma Web Development Course - Tutorial #1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>Tutorial</iframe>
<p>Tutorial</p>
<iframe width="430" height="250" src="https://www.youtube.com/embed/4xM8zypcxnc" title="How to Make Money With AI and Machine Learning (This works) 🔥" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>AI-ML</iframe>
<p>AI</p>
<iframe width="430" height="250" src="https://www.youtube.com/embed/GXo2vv0oxB4" title="Fastest Way to Make Money from Web Development 🤑💰" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen>Money</iframe>
<p>Make Money</p>
<iframe width="500" height="300" src="https://www.youtube.com/embed/C3GouGa0noM" title="GODS ft. NewJeans (뉴진스) (Official Music Video) | Worlds 2023 Anthem - League of Legends" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<p>GODS - Official Music Video</p>
<div>
<h2>audio</h2>
<h3>offline audio</h3>
<p>BGM</p>
<audio src="once-in-paris.mp3" controls></audio>
<h3>online audio</h3>
<p>TIM</p>
<iframe width="100%" height="100" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1514794036&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/tr_king_music" title="Issa jatt" target="_blank" style="color: #cccccc; text-decoration: none;">Issa jatt</a> · <a href="https://soundcloud.com/tr_king_music/tim-jassi-khalar-tr-king-music" title="TIM - Jassi Khalar TR King Music" target="_blank" style="color: #cccccc; text-decoration: none;">TIM - Jassi Khalar TR King Music</a></div>
<p>Fall in Love</p>
<iframe width="100%" height="200" scrolling="no" frameborder="no" allow="autoplay" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/1493780887&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe><div style="font-size: 10px; color: #cccccc;line-break: anywhere;word-break: normal;overflow: hidden;white-space: nowrap;text-overflow: ellipsis; font-family: Interstate,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Garuda,Verdana,Tahoma,sans-serif;font-weight: 100;"><a href="https://soundcloud.com/tr_king_music" title="Issa jatt" target="_blank" style="color: #cccccc; text-decoration: none;">Issa jatt</a> · <a href="https://soundcloud.com/tr_king_music/fall-in-love-jassi-khalar-tr-king-music" title="Fall in Love Jassi Khalar - TR King Music" target="_blank" style="color: #cccccc; text-decoration: none;">Fall in Love Jassi Khalar - TR King Music</a></div>
</div>
<body>
</html>