-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.11 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
37
<!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>Pokémon</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<div class="container">
<header>
<h1>Trabalhando com <span>HTML</span>, <span>CSS</span> e usando o <span>JavaScript</span> para fazer consulas online.</h1>
<hr>
</header>
<main>
<div class="imagem">
<img class="imagem" src="./img/pokemon-logo.png" alt="Pokemon-logo">
</div>
<form action="">
<label for="">Nome ou Número do Pokémon:</label>
<input type="text" name="name" id="name" placeholder="Exemplo: Pikachu ou 25" required>
<input type="submit" value="BUSCAR">
</form>
</main>
<div id="imgPokemon">
</div>
<div id="content">...</div>
</div>
<script src="./assets/script.js"></script>
</body>
</html>