-
Notifications
You must be signed in to change notification settings - Fork 0
/
cssCreature.html
31 lines (31 loc) · 980 Bytes
/
cssCreature.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
<!DOCTYPE html>
<head>
<title> Spongebob</title>
<link rel="stylesheet" type="text/css" href="./cssCreature.css">
</head>
<body style="background-color: lightyellow">
<div class="Spongebob">
<h1 style="text-align: center;">Spongebob</h1>
<div class="sbody"></div>
<div class="left-eye"></div>
<div class="right-eye"></div>
<div class="inside-left-eye"></div>
<div class="inside-right-eye"></div>
<div class="mouth"></div>
<div class="mouth-smile"></div>
<div class="mouth-tooth1"></div>
<div class="mouth-tooth2"></div>
<div class="left-arm"></div>
<div class="left-arm-hand"></div>
<div class="right-arm"></div>
<div class="right-arm-hand"></div>
<div class="shirt"></div>
<div class="pants"></div>
<div class="tie"></div>
<div class="lleg"></div>
<div class="rleg"></div>
<div class="lfoot"></div>
<div class="rfoot"></div>
</div>
</body>
</html>