-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (33 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
43 lines (33 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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Classificador de Herói</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="star">
<img src="src/star.png" alt="Estrela" width="90">
</div>
<div id="cloud1">
<img src="src/cloud.png" alt="Nuvem" width="150">
</div>
<div id="cloud2">
<img src="src/cloud.png" alt="Nuvem" width="150">
</div>
<div id="cloud3">
<img src="src/cloud.png" alt="Nuvem" width="150">
</div>
<h1>Classificador de nível de Herói</h1>
<input type="text" id="nome" placeholder="Nome do Herói">
<input type="number" id="xp" name="xp" placeholder="XP do Herói" required>
<br>
<button onclick="avaliar()">Enviar</button>
<div class="resultado" id="resultado"></div>
<div id="heroi">
<img src ="src/run (2).gif" alt="Herói correndo" width="80" height="80">
</div>
<div id="grama"></div>
<script src="script.js"></script>
</body>
</html>