-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (60 loc) · 1.95 KB
/
index.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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML in One Video</title>
</head>
<body>
<h1>HTML in One Video</h1>
<div style=" border: 2px solid;">
<a href="./home.html" target="_blank">Home</a>
</div>
<a href="forms.html">Form</a>
<h1>This is a level 1 heading</h1>
<h2>This is a level 2 heading</h2>
<h3>This is a level 3 heading</h3>
<h4>This is a level 4 heading</h4>
<h5>This is a level 5 heading</h5>
<h6>This is a level 6 heading</h6>
<p>This is a paragraph of text. It provides a way to separate blocks of content in a readable format.</p>
<hr/>
<em>Hi</em>
<hr>
<i>Italic</i>
<br/>
<b>Bold</b>
<marquee behavior="" direction="">Marquee</marquee>
<pre>
jebej
fre
fre
f
fre
Lorem ipsum dolor sit amet consectetur adipisicing elit. Non, et tempora dolorum rem saepe consectetur quo laborum eligendi id harum unde ab expedita quisquam? Amet aperiam culpa quos debitis quas?
</pre>
<!-- Multimidia Tags -->
<img src="https://www.w3schools.com/html/pic_trulli.jpg" alt="Pic of good building "/>
<hr>
<video controls width="100%" height="200px" style="background: black;" src="https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/BigBuckBunny.mp4">
<source src="" type="">
</video>
<audio src="https://commondatastorage.googleapis.com/gtv-videos-bucket/CastVideos/mp4/BigBuckBunny.mp4" controls></audio>
<iframe src="home.html" frameborder="0"></iframe>
<hr>
<ol type="" start="4" >
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
</ol>
<ul>
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
<li>List 1</li>
</ul>
</body>
</html>