-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 916 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Alice in Wonderland</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<div id="room">
<div id="alice-container">
<div id="alice" class="alice-m"></div>
</div>
</div>
<div id="bar">
<div class="drinks-flex">
<img id="drink-shrink" class="drinks"
src="img/pink-bottle-shrink.png" alt="Pink Bottle">
</div>
<div class="drinks-flex">
<img id="drink-grow" class="drinks" src="img/blue-bottle-grow.png" alt="Blue Bottle">
</div>
</div>
</div>
<script src="animation.js"></script>
</body>
</html>