init commit

This commit is contained in:
2026-08-04 06:53:36 -06:00
commit 5df8484e8f
91 changed files with 2859 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta name = "viewport" content = "width=device-width, initial-scale=1" charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<title>PLACEHOLDER</title>
</head>
<body>
<div id="output">
<h1 id="output-text"></h1>
<button id="clear" onclick="resetAndClear()" hidden>Clear</button>
</div>
<div class="grid">
<div class="box" id="0" onclick="clickTracker(this)"></div>
<div class="box" id="1" onclick="clickTracker(this)"></div>
<div class="box" id="2" onclick="clickTracker(this)"></div>
<div class="box" id="3" onclick="clickTracker(this)"></div>
<div class="box" id="4" onclick="clickTracker(this)"></div>
<div class="box" id="5" onclick="clickTracker(this)"></div>
<div class="box" id="6" onclick="clickTracker(this)"></div>
<div class="box" id="7" onclick="clickTracker(this)"></div>
<div class="box" id="8" onclick="clickTracker(this)"></div>
</div>
</body>
<footer>
<script src="js/script.js"></script>
</footer>
</html>