-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStep_462.html
More file actions
37 lines (34 loc) · 1.02 KB
/
Copy pathStep_462.html
File metadata and controls
37 lines (34 loc) · 1.02 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
<!DOCTYPE html>
<html>
<head>
<title>This is the Title</title>
<style>
body {
background-color: lightblue;
color: darkblue;
}
h3{
text-align: center;
}
img{
width: 600px;
height: 300px;
border: 2px red dashed;
}
iframe{
width: 560px;
height: 315px;
border: 0;
}
</style>
</head>
<body>
<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" alt="The Tech Academy Logo">
<h3>Have you seen The Tech Academy's Student Enrollment video?</h3>
<iframe src="https://www.youtube.com/embed/3L1Bz43yi0E?si=Qktc87nCIezRDpQY" allow="fullscreen"></iframe>
</body>
</html>