-
Notifications
You must be signed in to change notification settings - Fork 0
/
second.html
43 lines (38 loc) · 1.33 KB
/
second.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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>S III M's test site</title>
<meta name="description" content="Testing Glia scripts">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#fafafa">
<style>
* {
box-sizing: border-box;
}
iframe {
height: 1000px;
width: 1000px;
}
.row {
display: flex;
flex-wrap: wrap;
padding: 0 4px;
}
/* Create four equal columns that sits next to each other */
.column {
flex: 25%;
max-width: 25%;
padding: 0 4px;
}
</style>
</head>
<body>
<!--[if IE]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="https://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</p>
<![endif]-->
<h1>Welcome to iframed page! <a href="https://siimmardus.github.io/index.html">Navigate to normal page</a></h1>
<iframe src='https://siimmardus.github.io/index.html' allow="display-capture 'none'">
</iframe>
</body>
</html>