-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 750 Bytes
/
index.html
File metadata and controls
41 lines (36 loc) · 750 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AmusingDevice</title>
<!-- <style>
html,
body,
iframe {
margin: 0px;
padding: 0px;
border: 0px;
width: 100%;
height: 100%;
}
</style>
<script>
function frameResize() {
var home = document.getElementById("home");
home.style.height = home.contentWindow.document.body.scrollHeight + 'px';
}
window.addEventListener('resize',()=>{
frameResize();
});
window.onload = ()=>{
frameResize();
}
</script> -->
<script>
window.location.href = window.location.origin + '/home/';
</script>
</head>
<body>
<!-- <iframe src="/home/" id="home" scrolling="no" frameborder="0"></iframe> -->
</body>
</html>