-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
47 lines (33 loc) · 1.18 KB
/
main.html
File metadata and controls
47 lines (33 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Guess who's that Pokemon!">
<meta name="keywords" content="pokemon">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes">
<title>Who's That Pokemon?</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 class="main roll-in-left">Who's That Pokemon?</h1>
<!--<input class="search roll-in-left" placeholder=" " spellcheck="false">-->
<ul class="roll-in-left">
<li id="score"></li>
<li id="outs"></li>
<li id="high"></li>
</ul>
<div>
<button id="btn0"type="button" name="button" hidden></button>
<button id="btn1"type="button" name="button" hidden></button>
<button id="btn2"type="button" name="button" hidden></button>
<button id="btn3"type="button" name="button" hidden></button>
</div>
<h4 class="pulsate-bck" hidden></h4>
<h3 class="pulsate-bck" hidden></h3>
<h2 hidden></h2>
<img class="roll-in-left" src="" alt="">
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>