-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
51 lines (38 loc) · 1.1 KB
/
Assignment.html
File metadata and controls
51 lines (38 loc) · 1.1 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
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Basic Webpage Assignment</title>
</head>
<body>
<!-- Navigation -->
<nav>
<a href="Assignment.html">Home</a> |
<a href="Dog.html">Dog Page</a>
</nav>
<main>
<h1>My First Webpage</h1>
<p>This page was created for my HTML assignment.</p>
<!-- Explicit link (external image) -->
<p>
<a href="https://hips.hearstapps.com/clv.h-cdn.co/assets/16/18/gettyimages-529202089.jpg?crop=0.6668237511781339xw:1xh;center,top">
Click here to view the dog image
</a>
</p>
<!-- Example image -->
<img src="https://via.placeholder.com/300" alt="Example image">
<h3>Learning HTML</h3>
<h6>Small heading example</h6>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/7P4OxUN4Jd0?si=2FZL2ZGjjlljC8km"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen>
</iframe>
</main>
<footer>
<p>© 2026 My Website</p>
</footer>
</body>
</html>