-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 1.82 KB
/
index.html
File metadata and controls
68 lines (63 loc) · 1.82 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
<!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>Futuro da IA</title>
</head>
<style>
body{
min-height:100vh;
}
::-webkit-scrollbar
{
width: 10px;
}
::-webkit-scrollbar-track
{
background: #7a7777;
}
::-webkit-scrollbar-thumb
{
background: #7107fa;
border-radius: 12px;
border: 2px solid;
}
::-webkit-scrollbar-thumb:hover
{
opacity: .95;
}
</style>
<body>
<h1>Futuro da IA</h1>
<div class="caixa-principal">
<div class="caixa-perguntas"></div>
<div class="caixa-alternativas"></div>
<div class="caixa-resultado">
<p class="texto-resultado"></p>
</div>
</div>
<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>
<script src="script.js"></script>
</body>
</html>