-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
46 lines (46 loc) · 1.58 KB
/
Assignment.html
File metadata and controls
46 lines (46 loc) · 1.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Web Page.</title>
<meta charset="utf-8"></meta>
</head>
<body>
<nav>
<a href="Assignment.html">Home</a>
<a href="Dog.html">Dog Picture</a>
<a href="Dog_Video.html">Dog Video</a>
</nav>
THIS IS WHERE ALL THE CONTENT ON WEBPAGE GOES
<p>Leanring HTML can be interesting as it simple yet powerful</p>
<blockquote cite="https://www.azquotes.com/quote/1111982?ref=html">
"The fundamental deficiency in HTML is that it reduces hypertext and the intertwinedness of human communication to a question of how it is rendered and what happens when you click on it. ... HTML is to the browser what PostScript is to the laser printer."
</blockquote>
<p>Video Embed is below</p>
<video width="320" height="240" autoplay muted>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
<h1>
My First Title with heading 1
</h1>
<h3>
My third potential title section
</h3>
<h6>
My last and sixth heading title
</h6>
<main>
<p>Placeholder for the main content of the web page</p>
</main>
<img src="https://cdn.pixabay.com/photo/2016/12/13/05/15/puppy-1903313_1280.jpg">
</img>
<p>Second dog with impilict href is below </p>
<a href="Dog.html">Dog Image</a>
<p>Following will link to external url to view the image</p>
<a href="https://www.operationkindness.org/wp-content/uploads/blog-kitten-nursery-operation-kindness.jpg">Click here to see external dog</a>
</body>
<footer>
All Rights Reserved @Test Company Inc 2026
</footer>
</html>