-
Notifications
You must be signed in to change notification settings - Fork 0
/
troca_palavras.html
87 lines (78 loc) · 3.76 KB
/
troca_palavras.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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="public/img/favicon.png" type="image/x-icon">
<title>Troca Palavras</title>
<link rel="stylesheet" href="public/css/header_games.css">
<link rel="stylesheet" href="public/css/troca_palavras.css">
</head>
<body>
<header>
<a href="index.html" id="home">
<ion-icon name="home"></ion-icon>
<p>Home</p>
</a>
<a href="https://chat2-kauamoreno2005.b4a.run/" target="_blank" id="chat">
<ion-icon name="chatbox-ellipses"></ion-icon>
<p>Sala de Bate-Papo</p>
</a>
</header>
<main>
<h1>Bem vindo ao jogo dos Filmes!</h1>
<h3>Troque uma palavra do nome dos filmes e veja o que acontece!</h3>
<div class="row">
<input type="text" maxlength="15" id="palavra" placeholder="Digite uma palavra" /> <br />
<button onclick="start()" id="começo">Mudar</button>
</div>
<div class="filmes">
<div class="column">
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/hora_do_rush.avif" alt="Imagem">
<p class="image-text" id="rush">A Hora do <strong id="filme1">Rush</strong></p>
</div>
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/planeta_macacos.jpg" alt="Imagem">
<p class="image-text" id="planeta_macacos"><strong id="filme2">Planeta</strong> dos Macacos</p>
</div>
</div>
<div class="column">
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/11homens.jpg" alt="Imagem">
<p class="image-text" id="homens">11 homens e um <strong id="filme3">Segredo</strong></p>
</div>
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/procurando_nemo.webp" alt="Imagem">
<p class="image-text" id="nemo">Procurando <strong id="filme4">Nemo</strong></p>
</div>
</div>
<div class="column">
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/poderoso.jpg" alt="Imagem">
<p class="image-text" id="poderoso">O Poderoso <strong id="filme5">Chefão</strong></p>
</div>
<div class="image-container">
<img width="300px" height="200px" src="public/img/troca_palavras/prince.jpg" alt="Imagem">
<p class="image-text" id="prince">O Pequeno <strong id="filme6">Principe</strong></p>
</div>
</div>
</div>
</main>
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script>
new window.VLibras.Widget('https://vlibras.gov.br/app');
</script>
</body>
<!-- IONICONS ------------------------------------------------------------------------------------->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
<script src="public/js/troca_palavras.js"></script>
</html>