37 lines
796 B
HTML
37 lines
796 B
HTML
<!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>
|