-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (30 loc) · 921 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Skript Tools</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<header class="header">
<div class="header-content">
<h1 class="tool-name">Welcome to Skript Tools</h1>
<button id="theme-toggle" class="theme-toggle">Switch to Dark Mode</button>
</div>
</header>
<div class="container">
<div class="tool-menu">
<a href="pattern-parser/index.html" class="tool-card">
<h2>Pattern Parser</h2>
<p>Generate the possible patterns and statistics of a Skript syntax.</p>
</a>
<a href="lore-generator/index.html" class="tool-card">
<h2>Lore Generator</h2>
<p>Create custom item lores with formatting options, ready for your scripts.</p>
</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>