- Notifications
You must be signed in to change notification settings - Fork 27.3k
/
Copy pathindex.html
executable file
·25 lines (18 loc) · 677 Bytes
/
index.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
<!DOCTYPE html>
<htmllang="en-US">
<head>
<metacharset="UTF-8">
<metaname="viewport" content="width=device-width">
<title>Prime numbers</title>
<scripttype="text/javascript" src="main.js" defer></script>
<linkhref="style.css"rel="stylesheet">
</head>
<body>
<labelfor="quota">Number of primes:</label>
<inputtype="text" id="quota" name="quota" value="1000000">
<buttonid="generate-primes">Generate primes</button>
<buttonid="reload">Reload</button>
<textareaid="user-input" rows="5" cols="62">Try typing in here immediately after pressing "Generate primes"</textarea>
<divid="output"></div>
</body>
</html>