-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 997 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<link rel="shortcut icon" href="pokeball.png" />
<link rel="stylesheet" href="./style.css" />
<link href="https://fonts.googleapis.com/css?family=Rubik&display=swap" rel="stylesheet" />
<title>PokeDex</title>
</head>
<body style="overflow: hidden;">
<header id="header">
<h1>Pokedex</h1>
</header>
<div id="content" style="overflow-y:scroll;">
<ul id="pokeUl" data-js="pokedex" class="pokedex"></ul>
</div>
<footer id="footer">
<h3>©Copyright Stefferson. All Rigths Reserved</h3>
</footer>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</html>