Newer
Older
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
<!doctype html>
<html>
<head>
<style>
body {
background-color: #52617d;
}
img, div {
position: absolute;
}
.spaceship {
left: 50%;
top: 50%;
margin-left: -150px;
margin-top: -50px;
}
.moon {
right: 50px;
top: 50px;
}
.dashboard {
right: 0;
bottom: 0;
}
.price, .cap {
font: normal 14px courier new;
right: 15px;
bottom: 127px;
width: 109px;
height: 20px;
}
.cap {
bottom: 50px;
}
</style>
</head>
<body>
<img class="moon" src="moooon.png" width="300"></div>
<img class="dashboard" src="dashboard.png "width="500"></div>
<img class="spaceship" src="spaiceship.png" width="250"></div>
<div id="price" class="price"></div>
<div id="cap" class="cap"></div>
<script src="poll.js"></script>
</body>
</html>