-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (42 loc) · 999 Bytes
/
index.html
File metadata and controls
53 lines (42 loc) · 999 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
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Karel !</title>
</head>
<body>
<h1>Karel J Robot</h1>
<p id="welcome">Welcome to my Karel J Robot fanpage! The best programming tool we all know and love is back!</p>
<img src="Karel.jpg" alt="Karel" style="width:400px;height:400px;">
<h2>Let's see what else Karel can do!</h2>
<p id="links"><a href="page2.html">-- Karel's favorite hobby</a></p>
<p id="links"><a href="page3.html">-- All of Karel's abilities</a></p>
<p id="twitch"> p.s. Follow Isaac on Twitch at <a href="https://www.twitch.tv/fbm2">twitch.tv/fbm2</a>!!</p>
</body>
</html>
<style>
body {background-image: url('Karel_BG.png');}
h1 {
font-family:'Papyrus';
color: blue;
text-align: center;
}
p {
font-family:'Comic Sans MS';
}
#welcome{
color: red;
font-size: 20px;
}
#twitch{
color: #C947F5;
font-size: 22px;
}
h2 {
color: Lime;
font-family:'Papyrus';
}
#links {
color: Turquoise;
font-size: 18px
}
</style>