-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpensa.html
More file actions
61 lines (55 loc) · 1.33 KB
/
pensa.html
File metadata and controls
61 lines (55 loc) · 1.33 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
<!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") === "plutao") {
window.location.href = "final.html";
}
};
</script>
<body>
<div class="container">
<h1>Muito bem! você chegou na oitava página</h1>
<p>Vamos agora para a nona página</p>
<p>
Nada visível por aqui... será que tem algum problema no código dessa
página?
</p>
<!-- você achou a dica: https://upload.wikimedia.org/wikipedia/commons/e/ef/Pluto_in_True_Color_-_High-Res.jpg -->
<p>Boa sorte!</p>
</div>
</body>
</html>