Add index.html

This commit is contained in:
The Ghost of FOSS' Past 2024-10-21 22:12:56 +00:00
parent 4f38ea61cc
commit 22c20d9dca

19
index.html Normal file
View 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>