-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester.html
39 lines (38 loc) · 1.07 KB
/
tester.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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type ="text/css">
#snake {
border:2px solid #5ccdc6;
font:bold 12pt sans-serif;
color:#0b5732;
position:relative;
}
#snake td {
width:8px;
height:8px;
background-color:#5ccdc6;
}
#snake th {
width:5px;
height:30px;
background-color:#5ccdc6;
}
#snake .snakeBody {
background-color:red;
}
#snake .eat {
background-color: yellow
}
</style>
</head>
<body>
<script type ="text/javascript" src ="hellocoffee.js"></script>
</body>
</html>