-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.55 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
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
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokémon Team Builder</title>
<link rel="icon" href="./assets/favico.png" type="image/ico">
<link rel="stylesheet" href="style.css">
<script defer type="text/javascript" src="src/index.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
</head>
<header>
<img src="./assets/pokemon-logo.svg" id="poke-logo">
<div id="title-wrapper">
<h1 id="team-builder">TEAM BUILDER</h1>
</div>
</header>
<body>
<section id="team">
<div id="team-container">
<div class="members" data-index="0">1</div>
<div class="members" data-index="1">2</div>
<div class="members" data-index="2">3</div>
<div class="members" data-index="3">4</div>
<div class="members" data-index="4">5</div>
<div class="members" data-index="5">6</div>
</div>
</section>
<section id="how-to">
<p>
Search, filter, and scroll your way through our Pokémon database featuring all 151 original Pokémon from the Kanto region! Click a Pokémon from the list to delve into its traits. Drag and drop Pokémon to the top of the page to forge your dream team of 1st Generation Pokémon!
</p>
</section>
<section id="selector">
<div id="filter-search">
<select name="filter" id="filter">
<option value="default">Filter</option>
<option value="azByName">A-Z by Name</option>
<option value="zaByName">Z-A by Name</option>
</select>
<form>
<input type="search" id="search" name="search" placeholder="e.g. Pikachu">
<input type="submit" id="submitSearch" value="SEARCH">
</form>
</div>
<ul id="pokemon-list"></ul>
</section>
<section id="profile"></section>
<footer>
<p>Pokémon Team Builder was built by
<a href="https://github.com/stephbertram" rel="noreferrer noopener" target="_blank">Steph Bertram</a>,
<a href="https://github.com/sahn0307" rel="noreferrer noopener" target="_blank">Sung-Jin Ahn</a>, and
<a href="https://github.com/pwangy/" rel="noreferrer noopener" target="_blank">Peggy Wang</a> for educational purposes as part of
<a href="https://flatironschool.com/" rel="noreferrer noopener" target="_blank">Flatiron School</a>'s Software Engineering bootcamp.
</p>
</footer>
</body>
</html>