-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (31 loc) · 1.13 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
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Self guiding rockets</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="space"></main>
<section class="settings">
<h2 class="settings__title">Algorithm variables</h2>
<div class="settings__group">
<label for="lifeSpan">Life span: </label>
<input name="lifeSpan" type="text" value="32">
</div>
<div class="settings__group">
<label for="populationSize">Population size: </label>
<input name="populationSize" type="text" value="64">
</div>
<div class="settings__group">
<label for="crossoverProbability">Crossover probability: </label>
<input name="crossoverProbability" type="text" value="0.5">
</div>
<button class="settings__save" type="button">Save</button>
</section>
<footer>© 2017 Zino Hofmann | All rights reserved.</footer>
<script src="js/script.js"></script>
</body>
</html>