diff options
author | MetroWind <chris.corsair@gmail.com> | 2025-09-27 13:05:27 -0700 |
---|---|---|
committer | MetroWind <chris.corsair@gmail.com> | 2025-09-27 13:05:27 -0700 |
commit | 81b539d6a63dd4921686fb50f05daf1b1d725e3b (patch) | |
tree | 5d6d832d73f7f946ebf40924221ffcda980f9837 /button-maker/index.html | |
parent | 925b5fcea3b85df08eea6574caf76639018a1937 (diff) |
Add button maker. Support basic editing.
Diffstat (limited to 'button-maker/index.html')
-rw-r--r-- | button-maker/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/button-maker/index.html b/button-maker/index.html new file mode 100644 index 0000000..6e5aba0 --- /dev/null +++ b/button-maker/index.html | |||
@@ -0,0 +1,28 @@ | |||
1 | <!doctype html> | ||
2 | <html lang="en-US"> | ||
3 | <head> | ||
4 | <meta charset="utf-8" /> | ||
5 | <meta name="viewport" | ||
6 | content="width=device-width, initial-scale=1" /> | ||
7 | <link rel="stylesheet" type="text/css" href="styles.css" media="screen" /> | ||
8 | <link rel="preconnect" href="https://fonts.googleapis.com"> | ||
9 | <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
10 | <link href="https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap" rel="stylesheet"> | ||
11 | |||
12 | <link rel="stylesheet" href="styles.css" /> | ||
13 | <script src="https://cdnjs.cloudflare.com/ajax/libs/preact/10.27.1/preact.min.js" | ||
14 | crossorigin="anonymous" | ||
15 | referrerpolicy="no-referrer"></script> | ||
16 | <script src="https://cdnjs.cloudflare.com/ajax/libs/preact/10.27.1/hooks.umd.min.js" crossorigin="anonymous" referrerpolicy="no-referrer"></script> | ||
17 | <script src="scripts/lib.js"></script> | ||
18 | <script type="module" defer src="scripts/main.js"></script> | ||
19 | <title>Button maker</title> | ||
20 | </head> | ||
21 | <body> | ||
22 | <div class="Window" id="MainWindow"> | ||
23 | <h1 class="Titlebar">Button Maker</h1> | ||
24 | <div id="App"> | ||
25 | </div> | ||
26 | </div> | ||
27 | </body> | ||
28 | </html> | ||