-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.34 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Solucione o problema</title>
</head>
<body>
<div class="caixa-principal">
<h1>Você decide o futuro do mundo</h1>
<div class="tela-inicial">
<p>2024. Mesmo agora a desigualdade pelo mundo todo é crescente,
alguns tem acesso a recursos e outros não. Seu objetivo
é resolver algumas dessas questões onde já não haverá diferenças entre essas diferentes classes.
Toda tentativa é válida, mesmo que isso signifique igualar as classes acabando com os privilégios,
ou simplesmente forçar uma regressão onde todos voltarão a viver no mato.
</p>
<button class="iniciar-btn">Iniciar</button>
</div>
<div class="caixa-perguntas"></div>
<div class="caixa-alternativas"></div>
<div class="caixa-resultado">
<p class="texto-resultado"></p>
<button class="novamente-btn">Jogar novamente</button>
</div>
</div>
<script type="module" src="js/aleatorio.js"></script>
<script type="module" src="js/perguntas.js"></script>
<script type="module" src="js/script.js"></script>
</body>
</html>