-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·34 lines (33 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-widh, initial-scale=1.0">
<title>Pokedex</title>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1 class="text-center">POKEDEX</h1>
<form>
<div class="form-group">
<label for="pokemon">POKEMON</label>
<input type="text" class="form-control" id="name">
<small>Exemplo: Pikachu</small>
<button type="button" class="btn btn-secondary btn-lg btn-block" id="btt">Buscar</button>
</div>
<div class="form-group">
<p class="lead" id="id"></p>
</div>
<div class="text-center" id="sprites">
<img src="" class="rounded" id="imagem_pokemon">
</div>
<div class="form-group">
<label for="pokemon"></label>
<p class="lead" id="moves"></p><br>
</div>
</form>
</div>
<script src="src/js/main.js"></script>
</body>
</html>