-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (29 loc) · 1.14 KB
/
index.html
File metadata and controls
34 lines (29 loc) · 1.14 KB
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
<!--
Copyright (c) 2024 Mo Tiltmann
Licensed under the GNU General Public License v3 (GPLv3).
See the LICENSE file for details.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Sieve of Eratosthenes</title>
<link rel="icon" href="images/favicon.png">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>The Sieve of Eratosthenes</h1>
<p>This tool is made to find prime numbers...</p>
<p>Remove all multiples of the next not striked number from the list.</p>
<div class="space"></div>
<input type="number" placeholder="Type board-size here and press enter... " id="Board-Size-Input">
<button id="Clear-All-Button" onclick="ResetBoard()">Reset Board</button>
<div class="small-space"></div>
<div id="numbermatrix"></div>
<div class="space"></div>
<p id="credits">Created by Mo Tiltmann</p>
<p>Github Repository: <a class="link" href="https://github.com/Motipo123/PrimenumberCalculator" target="_blank">Click Here!</a> </p>
<script src="script.js"></script>
</body>
</html>