-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (27 loc) · 1.08 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
<!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="./css/style.css">
<link rel="shortcut icon" href="./favicon/favicon.ico"image/x-icon">
<title>Projeto Crossfire HUD</title>
</head>
<body>
<main>
<img src="./imagens/commlink_hud_526x754.png" alt="imagem de um commlink" class="commlink">
<h1 class="commlink__titulo" id="categoria"></h1>
<h2 class="commlink__subtitulo" id="titulo"></h2>
<p class="commlink__texto" id="fraseSorteada"></p>
<div class="botoes">
<button class="botao__ante" onclick="embaralharESortear()"><</button>
<button class="botao__post" onclick="embaralharESortear()">></button>
<button class="botao__novo" onclick="embaralharESortear()">⭮</button>
</div>
</main>
<footer>© José Carlos Lima - 2024</footer>
<!-- Main JS -->
<script src="./js/script.js"></script>
<script src="./js/frases.js"></script>
</body>
</html>