-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
47 lines (35 loc) · 833 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
40
41
42
43
44
45
46
47
<!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>Retro Screen Saver</title>
<style>
#container {
width: 400px;
height: 400px;
position: relative;
background: yellow;
}
#animateTB {
width: 50px;
height: 50px;
position: absolute;
}
#animateBB {
width: 50px;
height: 50px;
position: absolute;
}
</style>
</head>
<body>
<div id="container">
<img src="220px-Basketball.png" id="animateBB" alt="Basket Ball">
<img src="product_14.png" id="animateTB" alt="Tennis Ball">
</div>
<button onclick="stopIt()">Stop IT!!</button>
<script src="game.js"></script>
</body>
</html>