-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideas.html
66 lines (61 loc) · 1.99 KB
/
ideas.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form class="form">
<label>
Player one choice:
<input class="pokemon1" type="text" name="pokemon-id" id="pokemon1">
</label>
<label>
Game choice:
<select name="choice" id="choice" class="choice">
<option value="player">Player two</option>
<option value="computer">Computer</option>
</select>
</label>
<div class="hidden">
<label>
Player Two Choice:
<input type="text" name="pokemon-id" id="pokemon2">
</label>
</div>
<button type="submit">Submit</button>
</form>
<main>
<h3 class="pokemon1-name"></h3>
<img class="pokemon1-image" src="https://placehold.co/300x300" height="300" width="300" />
<h3 class="pokemon2-name"></h3>
<img class="pokemon2-image" src="https://placehold.co/300x300" height="300" width="300" />
<section class="attack">
<article>
<h3 class="attack__effectiveness">
ATTACK EFFECTIVENESS
</h3>
<p class="attack__effectiveness-answer">
</p>
</article>
<article>
<h3 class="attack__stats">
ATTACK STATS
</h3>
<p class="attack__stats-answer">
</p>
</article>
<article>
<h3 class="attack__speed">
ATTACK SPEED
</h3>
<p class="attack__speed-answer">
</p>
</article>
</section>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.19.2/axios.min.js"></script>
<script src="script.js"></script>
</body>
</html>