-
Notifications
You must be signed in to change notification settings - Fork 0
/
index .html
127 lines (85 loc) · 3.92 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poki-World</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="pokeball.jpg">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body >
<div class="forLoadingBody">
<l-quantum class="loader"
size="100"
speed="2"
color="white"
></l-quantum>
<div id=welcome>
<h1 id="wel"><i>Welcome to Poki-verse</i></h1>
</div>
<button id="mode"><i class="fa-regular fa-lightbulb"></i> <span id="modeText"> Light mode</span></button>
<br>
<br>
<h1 id="choose_your_pokemon"> <pre>Choose your
pokemon:-</pre></h1>
<br>
<div class="choices">
<div class="choice" id="ground"><img src="ground-removebg-preview.png" alt="ground"> <br> <i class="fa-solid fa-map-pin"></i>
Ground-type</div>
<div class="choice" id="water"><img src="water-removebg-preview (1).png" alt="water"><br> <i class="fa-solid fa-droplet"></i>
Water-type</div>
<div class="choice" id="fire"><img src="fire-removebg-preview-removebg-preview.png" alt="fire"><br> <i class="fa-solid fa-fire"></i>
Fire-type</div>
<div class="choice" id="grass"><img src="grass-removebg-preview.png" alt="grass"><br><i class="fa-brands fa-pagelines"></i>
Grass-type</div>
<div class="choice" id="flying"><img src="flying-removebg-preview-removebg-preview.png" alt="flying"><br> <i class="fa-solid fa-dove"></i>
Flying-type</div>
</div>
<br>
<br>
<h1 id="choose"><i class="fa-solid fa-user-ninja"></i> <span id="chooseText">Choose a Pokemon</span></h1>
<h2 id="fight"><i class="fa-brands fa-free-code-camp"></i> <span id="fightText" >Fight</span></h2>
<div id="result">
<div id=y_score>
<h4> <i class="fa-regular fa-user"></i> Your Score</h4>
<h4 id="yourScore">0</h4>
</div>
<div id="c_score">
<h4><i class="fa-solid fa-computer"></i> Computer Score</h4>
<h4 id="computerScore">0</h4>
</div>
</div>
<br>
<details id="rules">
<summary><h3 style="display: inline;"> <i class="fa-solid fa-scale-balanced"></i> Rules</h3> </summary>
<p><span style="font-size:16px;font-weight: bold;">Rules:-</span>
1. Fire type pokemon weakness is Water and Ground type pokemon. <br>
2. Water type pokemon weakness is Grass and Flying type pokemon. <br>
3. Grass type pokemon weakness is Fire and Flying type pokemon. <br>
4. Flying type pokemon weakness is Fire and Ground type pokemon. <br>
5. Ground type pokemon weakness is Water and Grass type pokemon. <br>
6. Fire type pokemon is strong against Flying and Grass type pokemon. <br>
7. Water type pokemon is strong against Fire and Ground type pokemon. <br>
8. Grass type pokemon is strong against Water and Ground type pokemon. <br>
9. Flying type pokemon is strong against Water and Grass type pokemon. <br>
10. Ground type pokemon is strong against Flying and Fire type pokemon. <br>
</p>
</details>
<fieldset id="aboutMe">
<legend>About Me</legend>
<p>to know about me please visit the page [Frame] <a
href="https://6f636e60-1268-46ab-97bc-8837abd70373-00-1qn7pm9q7ojyg.kirk.replit.dev/" target="aboutMe" id="aboutmeFrame" >Intro-Vivek</a></p>
<p>link to redirect to the page <a
href="https://6f636e60-1268-46ab-97bc-8837abd70373-00-1qn7pm9q7ojyg.kirk.replit.dev/" target="_blank" id="aboutmelink" >Intro-Vivek</a></p>
<iframe name="aboutMe" class="removeFrame" id="scaledFrame" width="100%" ></iframe>
</fieldset>
<footer id="copyright">
<p>© 2024 Vivek Kumar Garg. All Rights Reserved.</p>
</footer>
</div>
<script src="script.js"></script>
<script type="module" src="https://cdn.jsdelivr.net/npm/ldrs/dist/auto/quantum.js"></script>
</body>
</html>