-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
27 lines (27 loc) · 867 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <meta theme-color="" /> -->
<title>Game of Life</title>
<link rel="stylesheet" href="css/styles.css" />
<script type="module" src="js/script.js"></script>
</head>
<body>
<h1>Game of Life</h1>
<table id="life-board"></table>
<section class="button-container">
<button id="start">Start</button>
<button id="clear">Clear</button>
<button id="random">Random</button>
<div class="slider-container">
<!-- Explain this -->
<label for="speed">Speed:</label>
<!-- Value not working -->
<input type="range" id="speed" min="10" max="1000" step="10" />
<span id="speed-value"></span>
</div>
</section>
</body>
</html>