-
Notifications
You must be signed in to change notification settings - Fork 0
/
brilho.html
39 lines (30 loc) · 1.14 KB
/
brilho.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brilho</title>
</head>
<body>
<section class="um" style="background-color: #801500; color: #fff;">
<div>
<div>
<h1>Brilho</h1>
<p>O filme todo possui pouco brilho para passar a sensação de suspense e medo.</p>
<p>Os únicos momentos com mais brilho são quando Alice se lembra de que existe uma cura para o T-Vírus (a solução), e no final quando são capturados pelos cientistas da Umbrella.</p>
</div>
</div>
<a href="saturacao.html" class="avancar">Avançar</a>
</section>
<div id="zumbi"></div>
<script>
document.querySelector("body").addEventListener("wheel", scroll);
function scroll() {
alert("Os zumbis estão vindo...")
document.getElementById("zumbi").innerHTML = `<audio src='zumbi8.mp3' autoplay></audio>`
}
</script>
</body>
</html>