-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathesta.html
More file actions
64 lines (59 loc) · 1.38 KB
/
esta.html
File metadata and controls
64 lines (59 loc) · 1.38 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
<!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: #f4f4f4;
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") === "inverno") {
window.location.href = "aprendendo.html";
}
};
</script>
<body>
<div class="container">
<h1>Muito bem! você chegou na terceira página</h1>
<p>
Agora a coisas continuam fáceis, você precisa chegar na terceira
página... continue manipulando a URL.
</p>
<p>
Você está na terceira página e quer ir para a
<strong>quarta página</strong>
página.
</p>
<img width="200" src="outono.png" alt="" />
<p>Boa sorte!</p>
</div>
</body>
</html>