-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (40 loc) · 1.29 KB
/
index.html
File metadata and controls
53 lines (40 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!--make it responsive-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Creative Project 2</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class=header>
<h1>Creative Project 2</h1>
<form>
<label>Enter a Pokemon Name</label>
<input id="pokemonInput" type="text"></input><br />
<br />
<input id="pokemonSubmit" type="submit" value="Submit"></input>
</form>
<hr>
</div>
<div class="flex-container">
<div class="flex-child">
<div id="pokemonResults">
</div>
<div id="pokemonMoves">
</div>
</div>
</div>
<div class="footer-repository">
<p>Git Repository:
click <a href="https://github.com/hacken01/creative-project-2.git">here</a> to
access
the repository </p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"
integrity="sha256-4iQZ6BVL4qNKlQ27TExEhBN1HFPvAvAMbFavKKosSWQ=" crossorigin="anonymous"></script>
<script text="type/javascript" src="/script.js">
</script>
</body>
</html>