Initial commit

This commit is contained in:
Idrees Hassan
2024-12-13 17:39:54 -05:00
commit 7dab604745
3 changed files with 176 additions and 0 deletions

19
index.html Normal file
View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Birb Sandbox</title>
<style>
html, body {
margin: 0;
padding: 0;
overflow: hidden;
/* background-color: #363636; */
}
</style>
</head>
<body>
<script src="birb.js"></script>
</body>
</html>