generated from alura/modelo-vitrinedev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.32 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cartas Personagens</title>
<link rel="stylesheet" href="./src/assets/css/reset.css">
<link rel="stylesheet" href="./src/assets/css/style.css">
<link rel="stylesheet" href="./src/assets/css/modal.css">
<link rel="icon" type="image/x-icon" href="./src/assets/img/favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Smythe&family=UnifrakturMaguntia&display=swap"
rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<header>
<h1 class="titulo"><img src="./src/assets/img/logo.png" alt="logo Devs&Dragons"></h1>
<button class="botao-duelar">Duelar!</button>
</header>
<ul id="personagens" class="personagens"></ul>
<div class="fundo-modal" id="fundo-modal"></div>
<div class="modal" id="modal">
<img src="./src/assets/img/trofeu.png" alt="">
<span class="mensagem"></span>
<button class="modal-fechar-botao" id="fechar-botao"><i class="fa fa-times"></i></button>
</div>
<script type="module" src="./src/index.js"></script>
</body>
</html>