-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsieve.html
37 lines (33 loc) · 1.21 KB
/
sieve.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
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SIEVE</title>
<link rel="stylesheet" href="style/sieve.css">
<link rel="icon" type="image/x-icon" href="assects/sieve.png">
</head>
<body>
<header>
<a href="index.html" id="homepage">
<img src="assects/back.png" alt="back">
</a>
<h1>SIEVE OF ERATOSTHENES</h1>
</header>
<main>
<span class="container"></span>
<span class="control">
<input type="number">
<button type="submit" onclick="generate()">SET SIZE</button>
<button type="button" onclick="sieve()" id="start">START</button>
<button type="button" id="play" disabled>PLAY</button>
<button type="button" id="pause" disabled>PAUSE</button><br>
<label for="speed">SPEED: 0.5s</label>
<input type="range" name="speed" id="speed" min="0" max="1000" value="500" step="10">
<button type="button" id="skip">SKIP</button>
</span>
</main>
<script src="script/sieve.js"></script>
</body>
</html>