-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
28 lines (24 loc) · 1.56 KB
/
main.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
<!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 Test</title>
<link rel="stylesheet" href="./assets/style/main.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" rel="stylesheet" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<a href="index.html"><img src="./assets/img/logo.png" class="logo" alt="Pokemon" style="width: 350px; margin: 40px auto 20px;"></a>
<div class="row">
<div class="links">
<button type="button" id="home" onclick="window.location.href='index.html'" style="width: 50px; background: #6C757D;"><i class="fas fa-home" style="font-size: 18px; color: #FFFFFF"></i></button>
<button type="button" id="search" onclick="window.location.href='search.html'" style="width: 50px; background: #FFC107"><i class="fas fa-search" style="font-size: 18px; color: #FFFFFF"></i></button>
<button type="button" id="main" onclick="window.location.href='main.html'" style="width: 50px; background: #007BFF;"><i class="fas fa-list-alt" style="font-size: 18px; color: #FFFFFF"></i></button>
</div>
</div>
<div id="poke_container" class="poke-container"></div>
<script src="./assets/js/pokemon-data.js"></script>
</body>
</html>