-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (42 loc) · 1.67 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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokedex</title>
<link rel="icon" type="image/png" sizes="32x32" href="assets/img/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row">
<div class="col s12 m4">
<div class="consulting">
<h5>ingresa un pokemon</h5>
<form id="searchingPoke">
<label for="search-poke" class="hidden"></label>
<input type="text" id="search-poke" name="search-poke" placeholder="ej. cubone" required>
<input type="submit" id="submit-btn" value="submit">
</form>
</div> <!-- /.consulting -->
</div> <!-- /.col -->
<div class="col s12 m8">
<div class="pokedex">
<div class="row">
<div class="col s12" id="pokemonsname"></div>
<div class="col s5" id="pokeimg">
</div>
<div class="col s7" id="pokeinfo">
</div>
</div>
</div> <!-- /.pokedex -->
</div> <!-- /.col -->
</div> <!-- /.row -->
</div> <!-- /.container -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script>
<script src="assets/js/app.js"></script>
</body>
</html>