-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (42 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pokemon V-2.0.0</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div>
<h1 id="MainHeading">Ye Kon Sa Pokemon Hai!!</h1>
</div>
<!-- ----------------------------------------------------------------------- -->
<div id="PokemonContainer"></div>
<!-- ----------------------------------------------------------------------- -->
<div class="Form-class" style="display: flex;justify-content: center;">
<form id="Form">
<label style="color: aliceblue;" for="PokemonName">Enter Pokemon Name</label>
<input class="input-class" id="PokemonName" type="text" placeholder="Enter the name of Pokemon" >
<button class="button-class" type="submit">Find Pokemon</button>
</form>
</div>
<!-- ----------------------------------------------------------------------- -->
<H2 style="display: flex;justify-content: center;color: aliceblue; margin-top: 50px;">(OR)</H2>
<!-- ----------------------------------------------------------------------- -->
<div class="Form-class" style="display: flex;justify-content: center;margin-top:50px;">
<form id="Form2">
<label style="color: aliceblue;" for="NumberOfPokemon">Enter the number of Pokemon</label>
<input class="input-class" id="NumberOfPokemon" type="text" placeholder="Enter the number of Pokemon" min="1" max="100">
<button class="button-class" type="submit">Find Pokemon</button>
<select id="Filter">
<option value="ALl">ALL</option>
<option value="Fire">Fire</option>
<option value="Water">Water</option>
<option value="Air">Flying</option>
<option value="Ice">Ice</option>
</select>
</form>
</div>
<script src="script.js"></script>
</body>
</html>