-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomo.html
More file actions
57 lines (51 loc) · 1.15 KB
/
como.html
File metadata and controls
57 lines (51 loc) · 1.15 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
<!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: blue;
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") === "anil") {
window.location.href = "um.html";
}
};
</script>
<body>
<div class="container">
<h1>Muito bem! você chegou na quinta página</h1>
<p>Vamos agora para a sexta página</p>
<p>Opa, parece que a dica está na cor da página</p>
<p>Boa sorte!</p>
</div>
</body>
</html>