-
Notifications
You must be signed in to change notification settings - Fork 157
/
index.html
25 lines (25 loc) · 1.26 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
24
25
<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">
<!-- linking an icon for using it in the application -->
<link rel="icon" type="image/ico" href="images/favicon.ico" />
<!-- linking a stylesheet named index.css present in the style directory -->
<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>