-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.16 KB
/
index.html
File metadata and controls
41 lines (36 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="reset.css" />
<link rel="stylesheet" href="pokemon.css" />
<link
href="https://fonts.googleapis.com/css?family=Righteous&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
<title>Pokemon Fight</title>
</head>
<body>
<header><h1>Pokemon Fight!</h1></header>
<div class="pokes">
<div class="article">
<div id="pokemonOne"></div>
<br>
<div id="imgOne" class="animated infinite bounce"></div>
<div id="attackStat1"></div>
</div>
<br />
<div class="article">
<div id="pokemonTwo"></div>
<br>
<div id="imgTwo" class="animated infinite bounce"></div>
<div id="attackStat2"></div>
</div>
</div>
<button id="battle" onclick="battle()">battle!</button>
</body>
<script src="pokemon.js"></script>
</html>