-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoding_fix.html
More file actions
39 lines (35 loc) · 1.33 KB
/
Copy pathcoding_fix.html
File metadata and controls
39 lines (35 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>This is the Title</title>
<style>
body {
background-color: lightblue;
}
p img{
border-style: dashed;
border-color: red;
border-width: 2px;
align: left;
}
h3 {
text-align: center;
}
</style>
</head>
<body>
<h1 style="color: darkblue;">This is the Heading 1</h1>
<h2 style="color: darkblue;">This is the Heading 2 element</h2>
<strong style="color: darkblue;">I am a bold student of The Tech Academy.<br></strong>
<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="The Tech Academy Logo">
</p>
<h3 style="color: darkblue;"> 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>