-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIndex.html
56 lines (56 loc) · 1.18 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
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function() {
var divs = document.getElementsByTagName("div");
for (var i = 0; i < divs.length; i++) {
divs[i].style.fontFamily = "Arial";
divs[i].style.fontSize = "200%";
}
}
</script>
<meta charset="UTF-8">
<title>The Simpsons</title>
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
overflow: hidden;
}
#header {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 15%;
background-color: Black;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 1.2rem;
font-weight: bold;
z-index: 1;
}
#iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
z-index: 0;
}
</style>
</head>
<body>
<div id="header">
Free Simpsons
</div>
<iframe id="iframe" src="https://taco-tv.vercel.app/#/media/JW-show-20711/21924/367216"></iframe>
</body>
<body>
</body>
</html>