-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 801 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<meta charset = "UTF-8">
<script src="birthday-cake.js"></script>
<link rel = "stylesheet" type = "text/css" media = "all" href = "birthday-cake.css"/>
<title>Birthday Cake</title>
</head>
<body onload="init();">
<div class="cake" onClick="putOutCandles();">
<div class="icing">
<div class="drip"></div>
<div class="drip"></div>
<div class="drip"></div>
<div class="drip"></div>
<div class="drip"></div>
</div>
<div class="layer top"></div>
<div class="layer middle"></div>
<div class="layer bottom"></div>
</div>
<div id="message_container" class="message"></div>
</body>
</html>