-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
28 lines (28 loc) · 977 Bytes
/
popup.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
26
27
28
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>DummmyText</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<div id="controls">
<label class="paragraphs-label">
<input type="number" value="3" id="paragraphs-input" required min="1" max="99" minlength="1" maxlength="2" />
paragraphs
</label>
<label class="words-label">
<input type="number" value="100" id="words-input" min="1" required max="999" minlength="1" maxlength="3" />
words per paragraph
</label>
<label class="checkbox-container add-tags-label">
<input type="checkbox" id="add-tags-checkbox" />
<span class="checkmark"></span>
add tags?
</label>
</div>
<input type="button" value="Copy" id="copy-button" />
<textarea id="lipsum-textarea" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>
<script src="./popup.js" type="module"></script>
</body>
</html>