forked from BiyaMe/abarosh1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmulti.html
39 lines (39 loc) · 799 Bytes
/
multi.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
<!DOCTYPE html>
<html>
<head>
<style>
html {
margin: 0;
}
body {
margin: 0;
background-color: black;
padding: 10px auto;
}
canvas {
display: block;
background-color: black;
margin: auto;
}
</style>
<title>Abarosh</title>
</head>
<body>
<p
style="
color: white;
font-family: sans-serif;
font-size: 14px;
margin-bottom: 6px;
text-align: center;
"
>
<span>YELLOW </span><span id="player1">0</span>
<span style="width: 200px"> - </span>
<span id="player2">0</span>
<span>PURPLE </span>
</p>
<canvas id="canvas" width="400" height="400"></canvas>
<script src="multi.js"></script>
</body>
</html>