-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1 KB
/
index.html
File metadata and controls
35 lines (31 loc) · 1 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="utf-8">
<title>Bomberman - Introdução</title>
<link rel="icon" href="./assets/game/img/icon.png" type="image/x-icon">
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<header>
<a href="#" class="logo"><img src="./assets/game/img/logo.png" class="logo" ></a>
<h1>Projeto Final de Computação Gráfica - Bomberman </h1>
</header>
<section id="introduction" class="introducao">
<h1 class="frase">SELECIONE UM MODO DE JOGO:</h1>
<div class="botao-container">
<a class="botao-jogar" href="./assets/player1.html">Jogar Sozinho</a>
<a class="botao-jogar" href="./assets/player2.html">Jogar em Dupla</a>
</div>
</section>
<footer>
<br>
<h1 class="frase"><strong>Autores:</strong></h1>
<ul class="lista-autores">
<li>Guilherme Lucas Pereira Bernardo</li>
<li>Kelvin Araújo Ferreira</li>
</ul>
<br>
</footer>
</body>
</html>