-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.38 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>Casa Microassombrada</title>
<!-- Standardised web app manifest -->
<link rel="manifest" href="/casa/jogo/appmanifest.json" />
<!-- Allow fullscreen mode on iOS devices. (These are Apple specific meta tags.) -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" sizes="256x256" href="/casa/jogo/icon-256.png" />
<meta name="HandheldFriendly" content="true" />
<!-- Chrome for Android web app tags -->
<meta name="mobile-web-app-capable" content="yes" />
<link rel="shortcut icon" sizes="256x256" href="/casa/jogo/icon-256.png" />
<style type="text/css">
html, body, iframe {
padding: 0;
margin: 0;
width: 100%;
min-width: 100%;
height: 100%;
min-height: 100%;
background: #000;
}
iframe {
position: absolute;
box-sizing: border-box;
left: 0;
top: 0;
border: 0 none transparent;
}
</style>
</head>
<body>
<iframe src="/casa/jogo/" frameborder="0" allowfullscreen="true" allow="fullscreen"></iframe>
</body>
</html>