-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment.html
More file actions
48 lines (37 loc) · 1.03 KB
/
Assignment.html
File metadata and controls
48 lines (37 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>My First Webpage</title>
<meta charset="utf-8">
</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>
<main>
<h1>Heading 1</h1>
<p>Learn HTML online
<a href="https://www.w3schools.com/">
W3Schools
</a>
</p>
<blockquote cite="https://www.w3schools.com/html/html_intro.asp">
"Intro to HTML"
</blockquote>
<p>How to make websites</p>
<iframe width="560" height="315" src="https://www.youtube.com/watch?v=it1rTvBcfRg&list=PLP9IO4UYNF0VdAajP_5pYG-jG2JRrG72s" frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
<img src="https://awesomeinc.org/tutorials/make-a-website-with-html-and-css/"
style="display: block">
<h3>Heading 3.</h3>
</main>
<footer>
<p>Dog website:
<a href="dog.html">Dogs!</a>
</p>
</footer>
</body>
</html>