-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/images/pokeicon.png" type="image/x-icon">
<link rel="stylesheet" href="./styles/estilo.scss">
<title>Paisaje Pokemon</title>
</head>
<body draggable="false">
<div draggable="false" id="nav">
<div draggable="false" id="infoTextContainer">
<p>Catch a pokemon clicking the <strong> pokeball! </strong>, then drag it into the
<strong>landscape</strong></p>
</div>
<div draggable="false" id="buscarPokemon">
<input draggable="false" type="text" placeholder="Search Pokemon!">
<button data-item="botonHuevo">
<img data-item="botonHuevo" draggable="false" class="icon" src="images/buttons/buscar.svg">
</button>
</div>
</div>
<div class="head">
<button draggable="false" class="accion" name="accion">
<img draggable="false" class="headButton" src="/images/buttons/004-pokemon.svg" alt="pokeball">
</button>
<div draggable="false" class="pokeContainer"></div>
</div>
<div draggable="false" class="landscapeContainer">
</div>
<div class="creditos">Iconos diseñados por <a href="https://www.flaticon.es/autores/roundicons-freebies"
title="Roundicons Freebies">Roundicons Freebies</a> from <a href="https://www.flaticon.es/"
title="Flaticon">www.flaticon.com</a> y <a href="https://www.flaticon.es/autores/freepik"
title="Freepik">Freepik</a> from <a href="https://www.flaticon.es/" title="Flaticon">www.flaticon.com</a>
</div>
<script src="./poke.js"></script>
</body>
</html>