-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.html
More file actions
64 lines (61 loc) · 2.59 KB
/
Copy pathmedia.html
File metadata and controls
64 lines (61 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project using media tag</title>
</head>
<body>
<header>
<h1>WelcometoCode Help</h1>
</header>
<table>
<tr>
<td>
<img src="img.jpg" alt="img">
</td>
<td>
<nav>
<ul>
<li><a href="#rs">DSA Lectures</a></li>
<li><a href="Roadmap Videos">OSY Videos</a></li>
<li><a href="Roadmap Videos">DBMS Lectures</a></li>
<li><a href="Roadmap Videos">Networking Videos</a></li>
</ul>
</nav>
</td>
</tr>
</table>
<h2>Code help</h2>
<p>What is Java?
Java is a most popular, object-oriented, widely used programming language and platform that is utilized for Android development, web development, artificial intelligence, cloud applications, and much more. So, mastering this gives you great opportunities in bigger organizations.
</p>
<h2>Additional media</h2>
<table>
<tr>
<td>
<audio src="Kahani Suno.mp3" controls></audio>
</td>
<td>
<video src="myvdo.mp4" controls></video>
</td>
</tr>
</table>
<section id="rs">
<h2>Roadmap Videos</h2>
<table>
<tr>
<td><iframe src="https://www.youtube.com/embed/zAU_rsoS5ok&list=RDMMzAU_rsoS5ok&start_radio=1" frameborder="0"></iframe></td>
<td><iframe src="https://www.youtube.com/embed/a7GITgqwDVg&list=RDMMzAU_rsoS5ok&index=2" frameborder="0"></iframe></td>
<td><iframe src="https://www.youtube.com/embed/kTlv5_Bs8aw&list=RDMMzAU_rsoS5ok&index=3" frameborder="0"></iframe></td>
</tr>
<tr>
<td><iframe src="https://www.youtube.com/embed/VuG7ge_8I2Y&list=RDMMzAU_rsoS5ok&index=5" frameborder="0"></iframe></td>
<td><iframe src="https://www.youtube.com/embed/Cb6wuzOurPc&list=RDMMzAU_rsoS5ok&index=4" frameborder="0"></iframe></td>
<td><iframe src="https://www.youtube.com/embed/DTcKkcyS410" frameborder="0"></iframe></td>
</tr>
</table>
</section>
</body>
</html>