Add files via upload

This commit is contained in:
Benjamin Adovasio
2025-09-05 09:40:42 -04:00
committed by GitHub
commit 9b61405f91
9 changed files with 291 additions and 0 deletions

36
options.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Final Project</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<header>
<ul id="heading">
<li class="scenes"><a href="index.html">Scene 1</a></li>
<li class="utils"><a href="options.html">𓃑</a></li>
</ul>
</header>
<body>
<h1 class="options">Options:</h1>
<table id="sceneList" class="options">
<thead>
<tr>
<th>Current Scenes:</th>
</tr>
<tr>
<td>Scene 1</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
<p class="options">Type a new name and click enter to save</p>
<script src="script.js"></script>
</body>
</html>