-
Notifications
You must be signed in to change notification settings - Fork 0
/
class5.html
76 lines (75 loc) · 2.52 KB
/
class5.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
<!DOCTYPE html>
<html>
<head>
<title>Class 5</title>
<link rel="stylesheet" href="class5.css"/>
<!-- <style>
.firstbox{
border: black 2px solid; text-align: center;
}
#internal_ul{
background-color: coral;
}
ol{
background-color: orange;
}
p{
background-color: aquamarine;
}
p[name="first"]{
text-align: right;
}
</style> -->
</head>
<body>
First Text
<br/>
<a style="color: rgb(148, 60, 170); background-color: black; border:white 1px dashed ;"href="https://www.google.com">google</a>
<h2 style=" width: 50%; color: rgb(148, 60, 170); background-color: black; border:white 1px dashed; text-align: center;"">First Level Heading</h2>
<p style="font-weight: 1000; text-align: center; ">
Hello World
<br/>Hello
<strong>Hello2</strong>
<em>Hello3</em>
</p>
<div class="firstbox">
<h5>DIV DIV DIV</h5>
<h6>DIV DIV DIV</h6>
<p name="first">
Hello World
</p>
</div>
<div>
<li>Pizza</li>
<li>pakistan</li>
<li>india</li>
<li>burger</li>
</ul>
<ul id="internal_ul">
<li>Pizza</li>
<li>pakistan</li>
<li>india</li>
<li>burger</li>
</ul>
<ol type="i">
<li>Pizza</li>
<li>pakistan</li>
<li>india</li>
<li>burger</li>
</ul>
</ol>
</div>
<img width="400px" height="100px" src="./Assets\wallpaperflare.com_wallpaper (3).jpg"/>
<img alt="Game of thrones" src="./Assets\wallpaperflare.com_wallpaper (3).png"/>
<video width="400px" height="100px" controls>
<source src="./Assets\a91130cf2ebb49afb639b1e28bd28809.mp4" type="video/mp4"/>
<source src="./Assets\a91130cf2ebb49afb639b1e28bd28809.mp4" type="video/mkv"/>
your browser does not support the video tag
</video>
<audio controls>
<source src="./Assets\3 BGM Remix _audio visualizer__Tamil(MP3_128K).mp3" type="audio/mp3"/>
<source src="./Assets\3 BGM Remix _audio visualizer__Tamil(MP3_128K).mp3" type="audio/wav"/>
your browser does not support the video tag
</audio>
</body>
</html>