-
Notifications
You must be signed in to change notification settings - Fork 0
/
pokedexLaunchX.html
62 lines (45 loc) · 1.79 KB
/
pokedexLaunchX.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<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>Pokedex LaunchX</title>
<link rel="stylesheet" href="./styles/pokedex.css">
<style>
body{
background-image: url("assets/backgroundPoke.jpg");
background-repeat:no-repeat;
background-size:cover;
}
</style>
</head>
<body>
<div class="mastercontainer">
<div class="container1">
<h1 style="text-align: center; position: relative; top: 15px;" >Pokedex LaunchX</h1>
<div class="screen">
<img src="./assets/pokeLogo.png" alt="" style="position: fixed; width: 220px; " id="pokeImg" >
<!-- <h2>INtroduce el nombre de tu pokemon</h2> -->
<div id="screenJS">
<img src="./assets/gifPoke.gif" alt="" style="position: relative; top: 120px; left: 100px;">
</div>
</div>
<div class="nombrePokemon">
<input type="text" placeholder="Introduce el Pokemon" id="pokename" name="pokename"><br>
</div>
<button onclick="fetchPokemon()" class="buttonPoke">0</button>
</div>
<div class="container1back">
</div>
<div class="container2">
<img src="./assets/coverpoke.png" alt="" class="pokecover">
</div>
<div class="container2back">
</div>
</div>
</body>
<footer>
<script src="./pokedexLaunchX.js"></script>
</footer>
</html>