-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·38 lines (38 loc) · 1.13 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
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Character Creator</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Custom Character Creator</h1>
<div class="container">
<div class="content">
<div class="matrix" id="matrix">
<!-- JS -->
</div>
<div class="controls-output">
<div class="controls">
<button id="clearBtn">Clear</button>
<button id="invertBtn">Invert</button>
</div>
<div class="output">
<pre id="symbolData"></pre>
<!-- JS -->
</div>
</div>
</div>
</div>
<footer>
<div class="footer-container">
<a href="https://github.com/Alfredosavi/customCharacter">GitHub</a>
</div>
</footer>
<script src="scripts.js"></script>
</body>
</html>