-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshti.html
More file actions
52 lines (48 loc) · 1.4 KB
/
shti.html
File metadata and controls
52 lines (48 loc) · 1.4 KB
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
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#board {
position: absolute;
top : 0;
left : 0;
width: 50px;
height: 50px;
}
#canon {
overflow: hidden;
}
.image-container{
width: 50px;
height: 50px;
top: 0;
left: 0;
}
img{
position: absolute;
top : 0;
left : 0; }
.image-container::before{
color: rgba(0, 0,0, 1);
}
body{
background-image: url("webdevSprites/4588509.jpg");
background-repeat: no-repeat;
background-size: 1920px 1080px;
}
</style>
</head>
<body>
<div id = "board" class = "image-container"> </div>
<div id = "canon" class = "image-container"> </div>
<div id = "titan" class = "image-container"> </div>
<div id = "canonball" class = "image-container"> </div>
<div id = "tank" class = "image-container"> </div>
<div id = "ricochet" class = "image-container"> </div>
<div id = "semiricochet" class = "image-container"> </div>
<script src = 'script.js'></script>
</body>
</html>