-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode-error.html
More file actions
57 lines (48 loc) · 1.5 KB
/
code-error.html
File metadata and controls
57 lines (48 loc) · 1.5 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
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<header>
<title>This is the Title</title>
</header>
<style>
body {
background-color: lightblue;
h1 {
color: darkblue;
}
h2 {
color: darkblue;
}
p {
color: darkblue;
}
}
font {
color: darkblue;
}
img {
border-style: dashed;
border-color: red;
border-width: 2px;
}
h3 {
text-align: center;
}
</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" width=(600px)
height=(300px) alt="The Tech Academy Logo">
<h3>
Have you seen The TechAcademy's Student Enrollment video?
</h3>
<iframe width="560" height="315" src="https://www.youtube.com/embed/3L1Bz43yi0E?si=BlRDDiFIZuacapKe"
alt="Tech Academy Enrollment Video" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</body>
</html>