Add index.html
This commit is contained in:
parent
4f38ea61cc
commit
22c20d9dca
1 changed files with 19 additions and 0 deletions
19
index.html
Normal file
19
index.html
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Prime Number Sieve</title>
|
||||||
|
<link rel="stylesheet" href="styles.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<h1>Prime Number Sieve</h1>
|
||||||
|
<input type="number" id="siveInput" placeholder="Enter a number" min="1">
|
||||||
|
<button id="calculateButton">Calculate Primes</button>
|
||||||
|
<div id="resultContainer"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script src="script.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue