-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebugAssignment.html
44 lines (29 loc) · 1.12 KB
/
DebugAssignment.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>This is the Title</title>
</head>
<body>
<style>
body {
background-color: lightblue;
color: darkblue;
}
img {
border: 2px dashed red;
padding: 10px;
}
#video-head {
text-align: center;
}
</style>
<h1>This is the Heading 1</h1>
<h2>Thsi 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" alt="The Tech Academy Logo" width=600px height=300px>
<h3 id="video-head">Have you seen The Tech Academy's Student Orientation video?</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>