-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 867 Bytes
/
index.html
File metadata and controls
40 lines (35 loc) · 867 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
32
33
34
35
36
37
38
39
40
<html>
<head>
<style>
body{
background-color: #000;
display: flex;
align-items: center;
justify-content: center;
}
table{
border-collapse: collapse;
border: 1px solid #000;
box-shadow: 0 6px 40px rgba(255, 255, 255, 0.2);
}
td{
width: 50px;
height: 50px;
border: 1px solid #000;
text-align: center;
vertical-align: center;
font-family: monospace;
font-size: 18px;
}
td.pixel{
width: 6px;
height: 6px;
border: 0;
}
</style>
</head>
<body>
<div id="fireCanvas"></div>
<script src="script.js"></script>
</body>
</html>