-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathmewtwo.html
More file actions
75 lines (58 loc) · 2.1 KB
/
mewtwo.html
File metadata and controls
75 lines (58 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mewtwo</title>
<link rel="stylesheet" href="mewtwo.css">
<link rel="icon" href="pokeball.png">
</head>
<body>
<div class="wrapper">
<div class="card">
<img src="mewtwo1.jpeg" alt="Mewtwo">
<div class="tophead">
<div class="facts">
<h6>Legendary</h6>
</div>
<h2 class="headtext">
Mewtwo
</h2>
<h3>
HP
</h3>
<h2 class="hp"> 300 </h2>
<div class="circle"></div>
</div>
<div class="description">
<div class="desc_facts">
<h6 class="ability">Ability</h6>
<h3 class="recover">Recover</h3>
</div>
<p class="recover_desc">
Once during your turn (before your attack), you may discard 2 energy points from the pokemon and
then heal all damage.
</p>
<div class="desc_facts">
<h3 class="slash">Psywave Slash</h3>
</div>
<p class="slash_desc">
This attack does 20 more damage for each damage counter on your opponent's active pokemon.
</p>
<hr class="divide">
<div class="dark_gx">
<h3 class="nova"> Dark Nova GX </h3>
</div>
<p class="gx_attack">
Knockout one of your opponent's pokemon (you can't use GX attack more than once in a game).
</p>
</div>
</div>
</div>
<img class="g" src="G-letter.png" alt="G">
<img class="X" src="X1.png" alt="X">
<footer class="credit" aria-label="Author credit">
Made by <a href="https://github.com/SamXop123" target="_blank" rel="noopener noreferrer">SamXop123</a>
</footer>
</body>
</html>