-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (42 loc) · 1.57 KB
/
index.html
File metadata and controls
57 lines (42 loc) · 1.57 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
<!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>Web Dev session</title>
<!-- <link rel="stylesheet" href="style.css"> -->
</head>
<body>
<h1>Hello World</h1>
<h1>Hello World</h1>
<h2>Hello worlde</h2>
<P>Hello World</P>
<h1>End Of Day (EOD) </h1>
<h1 class="head"><span style="color: blue">E</span>nd <span style="color: blue">O</span>f <span style="color: blue">D</span>ay</h1>
<!-- Comment line Ctrl + / -->
<table class="firstable">
<tr>
<th>Name</th>
<th>Birthdate</th>
</tr>
<tr>
<td>Parikshit</td>
<td>22/10</td>
</tr>
<tr>
<td>Oindrila</td>
<td>21/10</td>
</tr>
</table>
<div class="firstdiv">
Hello World!
</div>
<a href="https://youtu.be/Hxdtgv7a8Gg" target="_blank">Autoware</a><br><br>
<a href="/index2.html" target="_blank">Next Page</a>
<video class="video" width="400" height="1000" autoplay loop muted>
<source src="/res.mp4" type="video/mp4">
</video>
<iframe class="youtube" width="560" height="315" src="https://www.youtube.com/embed/Hxdtgv7a8Gg?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>