mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
14 lines
358 B
HTML
14 lines
358 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Prime number generator</title>
|
|
<script src="index.js"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
</head>
|
|
<body>
|
|
<button onclick="generatePrime()">Start</button>
|
|
<div>
|
|
<p id="Text"></p>
|
|
</div>
|
|
</body>
|
|
</html> |