-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.03 KB
/
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" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>gameoflife.js</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" type="img/jpg" href="https://us.123rf.com/450wm/sudowoodo/sudowoodo1706/sudowoodo170600033/80907546-emoji-verde-cara-alien%C3%ADgena-extraterrestre-humanoide-cabeza-icono-vector-ilustraci%C3%B3n.jpg"/>
</head>
<body>
<div id="app">
<h1>gameoflife.js</h1>
<div id="navbar">
<button id="run" class="parameter">run</button>
<button id="clear" class="parameter">clear</button>
</div>
<div id="grid">
</div>
<div id="navbarBottom">
<button id="random" class="parameter">random</button>
<input id="randomValue" class="slider" type="range" max="90" min="1" value="50"></input>
</div>
</div>
<script src="./src/main.js"></script>
</body>
</html>