-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVideo.html
More file actions
34 lines (27 loc) · 837 Bytes
/
Copy pathVideo.html
File metadata and controls
34 lines (27 loc) · 837 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Apple Video</title>
<meta charset="utf-8">
</head>
<body>
<!-- Navigation Menu -->
<nav>
<a href="Assignment.html">Home (Fruits)</a> |
<a href="Video.html">Apple Video</a>
</nav>
<main>
<h1>Great Video About Apples</h1>
<p>Watch this interesting video to learn more about why apples are so healthy!</p>
<!-- Required YouTube Video Link (Replaced iframe with a direct link to avoid local file:// restrictions) -->
<p>
<a href="https://www.youtube.com/watch?v=W5WWKaxKuKA" target="_blank">
Click here to watch the video about apples on YouTube!
</a>
</p>
</main>
<footer>
<!-- Footer content removed -->
</footer>
</body>
</html>