-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCode-Errors-Assignment.html
More file actions
30 lines (19 loc) · 931 Bytes
/
Code-Errors-Assignment.html
File metadata and controls
30 lines (19 loc) · 931 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
<html>
<head>
<title>This is the Title</title>
</head>
<body style="background-color: lightblue; color: darkblue">
<h1>This is the Heading 1</h1>
<h2>This is the Heading 2 element</h2>
<p><strong>I am a bold student of the Tech Academy</strong></p>
<p><a href="https://www.learncodinganywhere.com/">This is The Tech Academy's website.</a></p>
<img src="https://www.learncodinganywhere.com/images/tech_logo/The%20Tech%20Academy%20Logo.png" width="600px"
height="300px" alt="Tech Academy Logo" style="border: dashed red 2px;">
<h3>
<center>Have you seen The Tech Academy's Student Orientation video?</center>
</h3>
<iframe
src="https://ttamediaservices-uswe.streaming.media.azure.net/04ce32f6-b9fa-4e02-8c47-3e5632d92a41/html_intro_final.mp4"
width="560" height="315" frameborder="0" allowfullscreen></iframe>
</body>
</html>