This repository was archived by the owner on May 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (125 loc) · 6 KB
/
index.html
File metadata and controls
158 lines (125 loc) · 6 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!--
* Copyright 2025 [Tushar Kumar Sahu]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
-->
<!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=7,IE=edge,chrome=1">
<meta name="author" content="Tushar Kumar Sahu">
<meta name="description"
content="Explore a vast bestiary of RPG creatures with Mythic Bestiary-search stats, lore, and abilities in an easy-to-use interface. Built with love and code, inspired by freeCodeCamp.">
<meta name="keywords"
content="RPG creature search, Mythic Bestiary, Creature search app, RPG monster database, Mythical creatures, RPG creature lookup, FreeCodeCamp RPG project, Explore RPG creatures, RPG creature directory, Fantasy creature database, Mythical beasts search, RPG creature details, RPG character search, RPG creatures list, Fantasy bestiary, RPG creatures ID search, Fantasy monsters app, RPG stats lookup, Mythic creatures API, Interactive RPG creature search">
<meta name="robots" content="index, follow">
<!-- Open Graph Meta Tags (for social sharing) -->
<meta property="og:title" content="Mythic Bestiary - RPG Creature Search App">
<meta property="og:description"
content="Explore a vast bestiary of RPG creatures with Mythic Bestiary-search stats, lore, and abilities in an easy-to-use interface. Built with love and code, inspired by freeCodeCamp.">
<meta property="og:image" content="https://root-tester.github.io/Roman-Numeral-Converter/favicon.png">
<!-- Optional image for social sharing -->
<meta name="google-site-verification" content="f00IC_2DF89LE5h9ArTm6qg32yxczOvK4eD6vjdOt1k" />
<meta property="og:url" content="https://root-tester.github.io/Mythic-Bestiary/">
<!-- Canonical Tag -->
<link rel="canonical" href="https://root-tester.github.io/Mythic-Bestiary/">
<title>Mythic Bestiary - RPG Creature Search App</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="https://root-tester.github.io/Roman-Numeral-Converter/favicon.png"
type="image/x-icon">
</head>
<body>
<main id="main-content" class="main">
<img src="https://root-tester.github.io/Roman-Numeral-Converter/logo.png" alt="The Root Tester" id="logo">
<h1 class="title">Mythic Bestiary - RPG Creature Search App</h1>
<div id="container">
<form role="search" id="search-form">
<label for="search-input">Search for Creature Name or ID:</label>
<input type="text" name="Creature" id="search-input" required>
<button id="search-button">Search</button>
</form>
<!-- output -->
<div class="output">
<div class="top-container">
<div class="name-and-id">
<span id="creature-name"></span>
<span id="creature-id"></span>
<div class="size">
<span id="weight"></span>
<span id="height"></span>
</div>
</div>
<div id="types">
</div>
<div>
<div id="special-name">
</div>
<div id="special-description">
</div>
</div>
</div>
<!-- bottom container -->
<div class="bottom-container">
<table>
<tbody>
<tr>
<th>Base</th>
<th>Stats</th>
</tr>
<tr>
<td>HP:</td>
<td id="hp"></td>
</tr>
<tr>
<td>Attack:</td>
<td id="attack"></td>
</tr>
<tr>
<td>Defencs:</td>
<td id="defense"></td>
</tr>
<tr>
<td>Sp. Attack:</td>
<td id="special-attack"></td>
</tr>
<tr>
<td>Sp. Defense: </td>
<td id="special-defense"></td>
</tr>
<tr>
<td>Speed:</td>
<td id="speed"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</main>
<footer>
<p> © 2025 Mythic Bestiary | Your ultimate RPG creature companion
Search | <a href="https://root-tester.github.io/Mythic-Bestiary/privacy-policy.md"> Privacy Policy </a>
</p>
<p>
📜 Includes 20 unique creatures (IDs 1–20) for quick reference and exploration.
</p>
<p>
Design inspired by a project from <a href="http://freecodecamp.org" target="_blank"
rel="noopener noreferrer">freeCodeCamp</a>
</p>
</footer>
</body>
<script src="main.js"></script>
</html>