-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (79 loc) · 2.84 KB
/
index.html
File metadata and controls
91 lines (79 loc) · 2.84 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!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>Você decide o futuro da IA</title>
</head>
<body>
<section>
<style>
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
padding: 0;
background: #212333;
}
h1{
color: rgb(108, 72, 59);
}
h1:hover {
text-shadow: 0 0 55px #fff,
0 0 10px #fff, 0 0 15px #ac6a3b,
0 0 20px #aa6431, 0 0 25px #c3743c,
0 0 30px #b48361
;
}
</style>
</head>
<h1>João Vitor</h1>
<div class="caixa-principal">
<h1>Você decide o futuro da IA</h1>
<div class="tela-inicial">
<p>Novembro de 2022, a humanidade se viu em uma realidade perturbadora.
De repente, percebemos que as máquinas evoluíram para além do que imaginávamos.
Agora, elas escrevem e falam de um jeito tão parecido com humanos que é quase impossível diferenciar
quem foi que escreveu ou falou o que.
Em meio a esse caos de identidade, uma missão surgiu.
Nosso objetivo: explorar o impacto da Inteligência Artificial (IA) em nossas vidas e confrontar as
possibilidades que o futuro nos reserva.
O mundo nunca mais será o mesmo.
</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="aleatorio.js"></script>
<script type="module" src="perguntas.js"></script>
<script type="module" src="script.js"></script>
<section>
<footer>
<a href="https://github.com/jotinhaxit" target="_blank" rel="noopener noreferrer">
<img src="gh.png"></img>
<p>Github</p>
</a>
<a href="https://www.youtube.com/channel/UCocsWjFMIb9_OMkOQAcGI0w" target="_blank" rel="noopener noreferrer">
<img src="yt.png"></img>
<p>Youtube</p>
<a href="https://chatgpt.com/" target="_blank" rel="noopener noreferrer">
<img src="ia.png"></img>
<p>Chat GPT</p>
</a>
</a>
<a href="https://api.whatsapp.com/send?phone=5543996347215" target="_blank" rel="noopener noreferrer">
<img src="wp.png"></img>
<p>Whatsapp</p>
</a>
</footer>
</section>
</body>
</html>