-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpoke.html
More file actions
20 lines (20 loc) · 776 Bytes
/
poke.html
File metadata and controls
20 lines (20 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width" />
<link rel="stylesheet" href="poke.css">
<title>PokeFinder</title>
<link rel="icon" type="image/png" href="images/pokemon.png" height="350" width="350">
</head>
<body>
<input type="text" id="name" placeholder="Enter Name of required pokemon!"><br>
<button onclick="fetchdata()" id="fetchbtn">FIND</button><br>
<div class="spritecard">
<img src="" id="sprite">
</div>
<script src="poke.js"></script>
</body>
</html>