forked from coetry/static101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 867 Bytes
/
index.html
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>
<head>
<title>Allen Hai</title>
<meta charset="UTF-8" />
<style>
h1 {
background: #edc645;
color: black;
width: fit-content;
padding: 8px;
text-transform: lowercase;
}
img {
width: 300px
}
</style>
</head>
<body>
<div class="name">
<h1>SpongeBob</h1>
</div>
<div class="blurbs">
<img src="https://upload.wikimedia.org/wikipedia/en/thumb/3/3b/SpongeBob_SquarePants_character.svg/1200px-SpongeBob_SquarePants_character.svg.png"></a>
<p>
My name is Spongebob and I live in a pineapple!
<p>
My best friend is Patrick Star and we do everything together :)
</p>
<p>
I work at the Krusty Krab and make the best Krabby Patties in the world!
</p>
</div>
</body>
</html>