-
Notifications
You must be signed in to change notification settings - Fork 0
/
ndpop.html
46 lines (45 loc) · 1.63 KB
/
ndpop.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
!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cat Image</title>
<style>
body {
text-align: center;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #f0f0f0;
background-image: url(assets/Screenshot\ \(2309\).png);
background-size: 100% 100%;
}
img {
max-width: 100%;
height: 100%;
}
</style>
</head>
<script>
function poponload()
{
testwindow = window.open("", "mywindow1", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(0, 0);
testwindow = window.open("", "mywindow2", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(250, 250);
testwindow = window.open("", "mywindow3", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(800, 800);
testwindow = window.open("", "mywindow4", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(100, 800);
testwindow = window.open("", "mywindow5", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(100, 621);
testwindow = window.open("", "mywindow6", "location=1,status=1,scrollbars=1,width=100,height=100");
testwindow.moveTo(800, 426);
}
</script>
<body onload="poponload()">
<img src="assets/logo2.png">
</body>
</html>