-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (25 loc) · 1.04 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Pokedex</title>
<link rel="shortcut icon" href="http://assets.pokemon.com/static2/_ui/img/favicon.ico">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<section id="root"></section>
<section id="modal-pokemon" class="modal-pokemon"></section>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="js/utils/get-json.js"></script>
<script src="js/utils/filter.js"></script>
<script src="js/components/header.js"></script>
<script src="js/components/search.js"></script>
<script src="js/components/details.js"></script>
<script src="js/index.js"></script>
</body>
</html>