-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 836 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
<!DOCTYPE html>
<html>
<head>
<title>Evansofts-flappy</title>
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
</head>
<style type="text/css">
@font-face {
font-family: 'Pixel';
src: url('src/medias/8bitfont.ttf');
}
body{
background-color: black;
}
#container{
border:inset 1px #fff;
width: 640px;
height: 480px;
display: block;
margin: 50px auto;
background: #fff;
}
p{
font-family: "Pixel";
color: white;
text-align: center;
margin-top: 10px;
}
</style>
<body>
<div id="container"></div>
<p>© Evansofts 2015 <i>Best in Google Chrome</i></p>
<script type="text/javascript" src="src/js/engine.js"></script>
<script type="text/javascript" src="src/js/app.js"></script>
</body>
</html>