-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (55 loc) · 2.27 KB
/
index.html
File metadata and controls
69 lines (55 loc) · 2.27 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
69
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digimon Screen</title>
<link rel="shortcut icon" href="https://digimon.net/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="./src/styles/reset.css">
<link rel="stylesheet" href="./src/styles/bg__digimons.css">
<link rel="stylesheet" href="./src/styles/atb__digimons.css">
<link rel="stylesheet" href="./src/styles/card__digimons.css">
</head>
<body>
<div class="container">
<div class="container-bg">
<div class="card">
<section class="i-card__logo">
<img height="70px" src="./src/assets/logo.png" alt="iconeLogo">
</section>
<section class="i-card__digimon">
<!-- Acredito que aqui vem as imagens dos digimons -->
<!--Só retirei o link da imagem fixa-->
<img src="" alt="imgDigimon">
<div class="t-bloco__name">
<!-- Acredito que aqui vem o nome do digimon -->
<!--Só retirei o nome do digimon -->
<p id="t-nome__bt"></p>
</div>
</section>
<section class="container-info">
<div class="a-info__column">
<p>HP</p>
<div class="b-nv-ex__progressHp">
<div class="b-nv-in__progress-hp"></div>
</div>
</div>
<div class="a-info__column">
<p>ATK</p>
<div class="b-nv-ex__progressAtk">
<div class="b-nv-in__progress-atk"></div>
</div>
</div>
<div class="a-info__column">
<p>DEF</p>
<div class="b-nv-ex__progressDef">
<div class="b-nv-in__progress-def"></div>
</div>
</div>
</section>
</div>
</div>
</div>
<script src="./src/scripts/script.js"></script>
</body>
</html>