-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollections.html
37 lines (36 loc) · 1.21 KB
/
collections.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="Image/eevee.png" type="image/png" />
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
@import url("https://fonts.googleapis.com/css2?family=Faustina:wght@300&family=Inter:wght@400;600;700&family=Playfair+Display&family=Poppins:wght@200;400;700&display=swap");
</style>
<title>PokéArena</title>
</head>
<body>
<section class="collectionPage">
<div class="collectionBody">
<!--Nav Section-->
<section class="navSection hide" id="navSection">
<div class="nav">
<input
class="userInput"
id="userInput"
type="text"
placeholder="Enter Pokemon Name....."
/>
<button class="searchButton" id="searchButton">Search</button>
</div>
</section>
<!--Main Section-->
<section class="randomPokemonSection">
<div class="randomPokemon" id="randomPokemon"></div>
</section>
</div>
</section>
<script src="script.js"></script>
</body>
</html>