-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathaboutblank.html
More file actions
62 lines (51 loc) · 1.91 KB
/
aboutblank.html
File metadata and controls
62 lines (51 loc) · 1.91 KB
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
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<title>about blank</title>
<link rel="icon" type="image/x-icon" href="icon.png" />
<link rel="stylesheet" href="main.css" />
<link rel="icon" href="icon.png" type="image/x-icon"/>
<base target="_blank" />
</head>
<body>
<div class="section blue">
<h3>
<a href="https://www.google.com/">google.com</a>
<a href="Disclaimer.html" target="_self">Disclaimer + Terms of Service</a>
<a href="credits.html" target="_self">Credits</a>
<a href="help.html" target="_self">Help</a>
<a href="index.html" target="_self">home</a>
</h3>
<p>
</div>
<script>
const htmlContent = `
<!DOCTYPE HTML>
<HTML lang="en">
<head>
<title>about:blank</title>
<link rel="stylesheet" type="text/css" href="stylez.css">
<link href="https://fonts.googleapis.com/css2?family=Eagle+Lake&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Yatra+One&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html, body {
height: 100%;
margin: 0;
}
iframe {
width: 100%;
height: 100vh;
border: none;
}
</style>
</head>
<body>
</body>
</HTML>
`
window.open('about:blank', '_blank').document.write(`<iframe src="aboutblank.html" style="width:100%; height:100vh; border:none;"></iframe>`)``
</script>
</body>
</html>