forked from fossasia/flappy-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 1.12 KB
/
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
<html>
<head>
<title>Flappy-SVG Game</title>
<!--<meta http-equiv="refresh" content="0; url=flappy.svg">-->
<!-- from http://stackoverflow.com/questions/4472891/how-can-i-disable-zoom-on-a-mobile-web-page -->
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' />
<!-- from http://www.w3schools.com/html/html_charset.asp -->
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="icon" type="image/ico" href="images/favicon.ico" />
<link href="style/index.css" rel="stylesheet">
<script src="style/bootstrap/js/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$(".loader").fadeOut("slow");
})
</script>
</head>
<body style="margin:0;padding:0;border:0;">
<div class="loader"></div>
<!-- always helpful: http://www.schepers.cc/svg/blendups/embedding.html -->
<embed id="embed" src="flappy.svg" type="image/svg+xml" width="100%" height="100%"></embed>
</body>
</html>