-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass05.html
48 lines (41 loc) · 1.5 KB
/
class05.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class 05</title>
</head>
<body>
<iframe width="450" height="350" src="http://maps.google.co.uk/maps?q=moma+new+york
&output=embed">
</iframe>
<iframe width="560" height="315" src="https://www.youtube.com/embed/gQkVORn-vZw?si=A1lId25K1Ni6Rt4m"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
©
<header>
<h1>My Website</h1>
</header>
<nav>
<!-- It is use for the Menu -->
</nav>
<section>
<!-- Content & it should be multiple -->
</section>
<aside>Ads</aside>
<Footer>
<!-- Website Footer -->
</Footer>
<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
</body>
</html>