blob: a45c5270b31a325ac4efafb074959a49d943b155 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Floating Cats Settings</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/marsey3d.webp" type="image/webp">
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="/floating-cats.css">
<script defer src="options.js" type="module"></script>
<script defer src="/floating-cats.js" type="module"></script>
</head>
<body>
<header>
<span class="fill left"></span>
<h1>Floating Cats Settings</h1>
<span class="fill right"></span>
</header>
<main>
<p>
Hello, these are the settings for Floating Cats :3
</p>
<fieldset>
<div class="field-row">
<label for="enable">Enable:</label>
<input type="checkbox" id="enable" name="enable">
</div>
<div class="field-row">
Yeah that's it for now lol
</div>
</fieldset>
</main>
<footer>
<p>Copyright © 2024 Eris</p>
</footer>
</body>
</html>
|