-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.46 KB
/
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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8' />
<link rel='icon' type='image/svg+xml' href='./favicon.svg' />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<title>Sigil Generator</title>
</head>
<body class='dark-mode'>
<main>
<div class='container flex'>
<div class='nav'>
<h1>Sigil Generator</h1>
<button id='themeSwitchButton' class='themeSwitch'>
<img src='https://joshkoter.com/wp-content/uploads/2021/09/themeSwitch.png' alt='switch theme' title='switch theme'>
</button>
</div>
<p id='info'>A sigil <em>(/ˈsɪdʒəl/; pl. sigilla or sigils)</em> is a type of symbol used in magic. The term has usually referred to a <strong>type of pictorial signature of a deity or spirit</strong>. In modern usage, especially in the context of chaos magic, sigil refers to a symbolic representation of the practitioner's desired outcome.</p>
<label for='input'>Enter in your wish or desire. Keep it concise and don't use negatives.</label>
<input type='text' id='input'>
<input type='submit' id='genSigilBtn' value='generate'>
<p id='output'></p>
<p id="description"></p>
</div>
</main>
<script type='module' src='./main.js'></script>
</body>
</html>