-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
32 lines (31 loc) · 1.29 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>javascript-workers</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Javascript workers in action</h1>
<p>Click on the pokeball and see which Pokemon you catched !</p>
<p class="catchphrase">Let's see on how many time you can catch'em all !</p>
<p class="timer"><label id="minutes">00</label>:<label id="seconds">00</label></p>
<div class="container">
<ul class="poke-list"></ul>
<div>
<button id="refresh" class="btn"><span></span></button>
<div id="text-placeholder" class="is-empty">
<img class="sprite" src="">
<div>Name : <span class="name"></span></div>
<div>Types : <span class="types"></span></div>
<div>Height : <span class="height"></span> ft</div>
<div>Weight : <span class="weight"></span> lbs</div>
<div class="loader">
<div class="lds-ring"><div></div><div></div><div></div><div></div></div>
</div>
</div>
</div>
</div>
<script src="javascript/script.js"></script>
</body>
</html>