-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (40 loc) · 1.76 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
<!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</title>
<script src="script.js"></script>
<script src="template.js"></script>
<script src="types.js"></script>
<!-- Bootstrap -->
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<!-- Normal css -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="stylesheet.css">
<!--FONTS-->
<link rel="stylesheet" href="fonts.css">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/img/favicon.png">
</head>
<body onscroll="offSet()" onload="getListPokemonData()">
<div onclick="closePokeCard()" class="d-none fullPokemonCard" id="fullPokemonCard"></div>
<div class="searchBarContainer">
<div class="p-3 text-bg-dark">
<h5 class="hoverHeadline" onClick="window.location.reload()">
<b>Search for Pokemon</b>
</h5>
<input placeholder="Name, Id or Type" id="search" type="text" class="validate" />
</div>
<div class="searchbarHits d-none" id="searchbarHits"></div>
</div>
<div id="pokedex"></div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-OERcA2EqjJCMA+/3y+gxIOqMEjwtxJY7qPCqsdltbNJuaOe923+mo//f6V8Qbsw3"
crossorigin="anonymous"></script>
<script src="searchbarCode.js"></script>
</body>
</html>