-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 918 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
28
<html>
<head>
<meta charset="utf-8"/>
<title>syracuse</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<header>
<h1>La suite de Syracuse</h1>
<div class="controls">
<form id="run">
<input id="entry" type="number" placeholder="premier terme">
<input id="speed" type="range" >
<input id="action" type="button" value="lancer"/>
</form>
<label for="skip-even">Passer les cas pairs</label>
<input id="skip-even" type="checkbox" /><br/>
<label for="highlight-numbers">Mettre en valeur les nombres séparés par "," : </label>
<input id="highlight-numbers" type="text"/>
</div>
</header>
<aside>
<div class="table">
</div>
</aside>
<script src="script.js"></script>
</body>
</html>