-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
47 lines (36 loc) · 1.21 KB
/
Assignment.html
File metadata and controls
47 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Basic Webpage Assigment</title>
<meta charset="utf-8">
</head>
<body>
<h1>My first Instructional Website</h1>
<nav>
<a href="Assignment.html">Home</a>
<a href="dog.html">Dog Picture</a>
<a href="dog_Vido.html">Dog Vido</a>
</nav>
<main>
<p>
<a href="https://i.pinimg.com/1200x/d5/57/ea/d557ea3d122ee3826418cb42bcc4419b.jpg">
Something I would like to do one day
</a>
</p>
<!-- Blockqoute Section -->
<h2>Inspirational Quote</h2>
<blockquote cite="https://starwars.com">
The greatest teacher, failure is.
</blockquote>
<!-- YouTube Video Section -->
<h2>My Favorite Video</h2>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/dQw4w9WgXcQ" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen
</iframe>
</main>
<footer>
<p>© 2026 My Website</p>
</footer>
</body>
</html>