-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (73 loc) · 2.52 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
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VTL</title>
<!--Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@100;300;400;900&display=swap" rel="stylesheet">
<!--Estilização Própria-->
<link rel="stylesheet" href="css/universal.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!--Título da página-->
<header>
<h1>VTL - SA2</h1>
</header>
<main>
<!--Container dos jogos-->
<article>
<!--Card da lâmpada-->
<section class="lampada">
<figure class="jogo-img">
<img src="assets/imagens/index/LampadaExemplo.png" alt="">
</figure>
<!--Nome do Jogo-->
<div class="jogo-nome">
<h2>LÂMPADA</h2>
</div>
</section>
<!--Card do cronômetro-->
<section class="cronometro">
<figure class="jogo-img">
<img src="assets/imagens/index/CronometroExemplo.png" alt="">
</figure>
<div class="jogo-nome">
<h2>CRONÔMETRO</h2>
</div>
</section>
<!--Card do Jogo da Velha-->
<section class="jogo-da-velha">
<figure class="jogo-img">
<img src="assets/imagens/index/JogoVelhaExemplo.png" alt="">
</figure>
<div class="jogo-nome">
<h2>JOGO DA VELHA</h2>
</div>
</section>
</article>
</main>
<footer>
<div class="repositorio">
<a href="https://github.com/OZimbres/VTL-SA2" target="_blank">Repositório</a>
</div>
<ul class="devs">
<li>
<a href="https://github.com/LoriaLawrenceZ" target="_blank">LoriaLawrenceZ</a>
</li>
<li> | </li>
<li>
<a href="https://github.com/ThmZ1101" target="_blank">ThmZ</a>
</li>
<li> | </li>
<li>
<a href="https://github.com/epicestudar" target="_blank">epicestudar</a>
</li>
</ul>
</footer>
</body>
<script src="js/index.js"></script>
</html>