forked from calvinyueWillTry/Project_1_Group
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (61 loc) · 2.22 KB
/
index.html
File metadata and controls
61 lines (61 loc) · 2.22 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!-- @format -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokémon App</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bungee:regular" rel="stylesheet" />
<link href="https://fonts.cdnfonts.com/css/pokemon-solid" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<link rel="stylesheet" href="./styles/reset.css" />
<link rel="stylesheet" href="./styles/styles.css" />
</head>
<nav class="nav-extended">
<div class="nav-content">
<div class="nav-title-container">
<a href="./battleScene/index.html" class="nav-title">BATTLE NOW!</a>
</div>
<a href="./pokemonSelection/index.html">
<button class="btn-floating btn-large halfway-fab waves-effect waves-light red"></button>
</a>
</div>
</nav>
<header>
<div class="titleText">
<span><a class="pokemon-text">Pokémon</a></span>
</div>
</header>
<body>
<main>
<footer class="page-footer center">
<div class="container">
<div class="row">
<div class="col l6 s12">
<h5 class="white-text">Resources and Credits</h5>
</div>
<div class="col l4 offset-l2 s12 footer-links">
<ul>
<li><a class="grey-text text-lighten-3" href="https://pokeapi.co/docs/v2">PokéAPI</a></li>
<li><a class="grey-text text-lighten-3" href="https://www.pokencyclopedia.info/en/index.php">Pokéncyclopedia</a></li>
</ul>
</div>
</div>
</div>
<div class="footer-copyright">
<div class="container">
<a class="grey-text text-lighten-4 center footer-links" href="https://github.com/calvinyueWillTry/Project_1_Group">Our GitHub</a>
</div>
</div>
<button id="begin" class="start">
<a href="./pokemonSelection/index.html">Select your Pokémon!
</a>
</button>
</footer>
<script src="./js/index.js" type="module"></script>
</body>
</main>
</html>