-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (38 loc) · 870 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sand fall</title>
<style>
body{
margin: 0px;
}
#canvas{
width: 40%;
background-color: rgb(224, 224, 224);
}
.screen{
width: 100%;
height: 100%;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
background-color: aqua;
}
</style>
</head>
<body>
<div class="screen">
<canvas width="200" height="150" id=canvas>
<img src="Capture.png" alt="" id="box">
</canvas>
<!-- <canvas width="20" height="20" id=canvas>
<img src="box.png" alt="" id="box">
</canvas> -->
</div>
<script src="./script.js"></script>
</body>
</html>