-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode9.html
More file actions
35 lines (35 loc) · 1.1 KB
/
code9.html
File metadata and controls
35 lines (35 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment</title>
<style>
table{
text-align:center;
font-size:larger;
}
th{
height:70px;
}
th,tr,td{
border:1px solid black;
width:500px;
}
</style>
</head>
<body>
<table>
<tr>
<th>Title</th>
<th>Links</th>
<th>Videos</th>
</tr>
<tr>
<td>Chai Aur Code</td>
<td><a href = "https://youtu.be/I7LrS1z_WNA?si=l1huG4vnWp6eNggj">https://youtu.be/I7LrS1z_WNA?si=l1huG4vnWp6eNggj</a></td>
<td><iframe width="560" height="315" src="https://www.youtube.com/embed/I7LrS1z_WNA?si=l1huG4vnWp6eNggj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></td>
</tr>
</table>
</body>
</html>