Skip to content
This repository was archived by the owner on Jun 6, 2025. It is now read-only.

Commit c84869a

Browse files
authored
Create wyndchyme.html
1 parent 5ff31af commit c84869a

File tree

1 file changed

+66
-0
lines changed

1 file changed

+66
-0
lines changed

Modder Dictionary/wyndchyme.html

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Modder Dictionary - STBUniverse</title>
7+
<link rel="stylesheet" href="css/styles.css">
8+
</head>
9+
<body>
10+
<header>
11+
<div class="header-content">
12+
<a href="index.html">
13+
<img src="assets/images/mc3dsmoddingwiki.png" alt="Minecraft 3DS Wiki" class="wiki-logo">
14+
</a>
15+
<img src="assets/images/gear.png" alt="Settings" class="settings-icon" id="settingsIcon">
16+
</div>
17+
</header>
18+
19+
<main class="modder-dictionary">
20+
<h1>Modder Dictionary</h1>
21+
<section id="modder-list">
22+
<!-- Template for a modder entry -->
23+
<article class="modder-entry">
24+
<h2>Modder Name</h2>
25+
<p>Description of the modder, including their background, contributions to the modding community, etc.</p>
26+
27+
<h3>Tools Developed</h3>
28+
<ul>
29+
<li>Tool Name 1 - Description</li>
30+
<li>Tool Name 2 - Description</li>
31+
</ul>
32+
33+
<h3>Mods Created</h3>
34+
<ul>
35+
<li>Mod Name 1 - Brief description or features</li>
36+
<li>Mod Name 2 - Brief description or features</li>
37+
</ul>
38+
</article>
39+
40+
<!-- Repeat modder-entry for each modder -->
41+
</section>
42+
</main>
43+
44+
<!-- Settings Menu Modal -->
45+
<div class="settings-modal" id="settingsModal">
46+
<div class="settings-menu">
47+
<h2>Settings</h2>
48+
<label>
49+
<input type="checkbox" id="themeToggle">
50+
Toggle Dark/Light Mode
51+
</label>
52+
<label>
53+
<input type="checkbox" id="bgImageToggle">
54+
Enable Background Image
55+
</label>
56+
<label>
57+
<input type="checkbox" id="blurToggle">
58+
Enable Background Blur
59+
</label>
60+
<button id="closeSettings">Close</button>
61+
</div>
62+
</div>
63+
64+
<script src="js/main.js"></script>
65+
</body>
66+
</html>

0 commit comments

Comments
 (0)