-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
45 lines (37 loc) · 870 Bytes
/
page2.html
File metadata and controls
45 lines (37 loc) · 870 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>Turn Left</title>
</head>
<body>
<h1>Karel's Favorite Hobby</h1>
<p id="main">Karel loves turning left, but refuses to turn right! He also loves solving mazes.</p>
<img src="Karel_Maze.png" alt="Karel Maze" style="width:500px;height:500px;">
<p id="links"><a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">return home</a></p>
<p></p>
<p id="twitch"> p.s. Don't forget to follow Isaac on Twitch at <a href="https://www.twitch.tv/fbm2">twitch.tv/fbm2</a>!!</p>
</body>
</html>
<style>
body {background-color: powderblue;}
h1 {
font-family:'Papyrus';
color: blue;
text-align: center;
}
p {
font-family:'Comic Sans MS';
}
#main{
color: red;
font-size: 20px;
}
#twitch{
color: #C947F5;
font-size: 22px;
}
#links {
font-family:'Papyrus';
font-size: 18px
}
</style>