-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 755 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 755 Bytes
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
<html>
<head>
<style>
html {
font-family: Helvetica;
}
.player {
width: 100px;
height: 100px;
background-color: salmon;
}
.filled {
width: 100px;
height: 100px;
background-color: #000;
}
.empty {
width: 98px;
height: 98px;
border: 1px solid #999;
}
</style>
</head>
<body>
<h1>
<span>Dodges Executed: <span id="points"></span></span>
</h1>
<table id="table"></table>
<script src="./game-trans.js"></script>
</body>
</html>