-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
44 lines (44 loc) · 1.15 KB
/
Assignment.html
File metadata and controls
44 lines (44 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Webpage</title>
<meta charset="utf-8">
<meta name="referrer" content="strict-origin-when-cross-origin">
</head>
<body>
<main>
<p>This webpage is about video games.</p>
<h1>Video games are fun!</h1>
<h3>Video games can be played with friends.</h3>
<h6>Video games can help pass the time.</h6>
<blockquote>
<p>
Jump on the turtle,
</p>
<p>
Save the princess from the king,
</p>
<p>
Eat a mushroom, grow.
</p>
</blockquote>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/-avspZlbOWU?si=hjFJm4fOMNhmbuQA"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
<p>
<a href="https://cdn.mediaplaynews.com/wp-content/uploads/2020/02/videogames-1-e1522270884482.jpg">Video Game Image</a>
</p>
</main>
<nav>
<a href="Assignment.html">Home</a>
<a href="Dog.html">Dog Picture</a>
<a href="Dog_Video.html">Dog Video</a>
</nav>
</body>
<footer>
<p>Footer</p>
</footer>
</html>