-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhacker.html
More file actions
66 lines (60 loc) · 1.5 KB
/
hacker.html
File metadata and controls
66 lines (60 loc) · 1.5 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
63
64
65
66
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<title>Jogo da URL - Início</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #efefef;
padding: 50px;
text-align: center;
}
.container {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 0 10px #ccc;
max-width: 600px;
margin: auto;
}
h1 {
color: #333;
}
p {
font-size: 18px;
color: #555;
}
code {
background: #eee;
padding: 2px 6px;
border-radius: 4px;
}
</style>
</head>
<script>
window.onload = function () {
const params = new URLSearchParams(window.location.search);
if (params.get("nextpage") === "do") {
window.location.href = "pensa.html";
}
};
</script>
<body>
<div class="container">
<h1>Muito bem! você chegou na setima página</h1>
<p>Vamos agora para a oitava página</p>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/3D2ajXkbQx4?si=8iE7PovUF07T0FI8"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
<p>Boa sorte!</p>
</div>
</body>
</html>