-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (28 loc) · 968 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script defer src="index.js"></script>
<link rel="stylesheet" href="app.css" />
<title>Pokedex</title>
</head>
<body>
<div id="header">
<img
id="header-img"
src="https://external-preview.redd.it/tQged7mKJ3cUpNMq5IMeceZvyKP3cTyHqhNmKEQ0Vv8.png?auto=webp&s=fb5fd61cae0bc9cde2bc2a006b1e2aeb0c935ce9"
/>
</div>
<div id="poke-form-container">
<form id="poke-form">
<label class="form-label"><strong>Name: </strong></label>
<input type="text" id="name-input" />
<label class="form-label"><strong>Image: </strong></label>
<input type="text" id="img-input" />
<input type="submit" value="Submit" />
</form>
</div>
<div id="poke-container"></div>
</body>
</html>