-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (50 loc) · 1.57 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en" data-theme="cupcake">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Typewriter Centre</title>
<script type="module" src="src/main.js"></script>
</head>
<body class="flex flex-col items-center">
<!-- Input Section -->
<div class="w-full max-w-xs mt-4">
<fieldset
class="fieldset bg-base-200 border border-base-300 p-4 rounded-box">
<legend class="fieldset-legend">Page details</legend>
<label class="fieldset-label">Page Width</label>
<input
id="pageWidth"
type="number"
class="input w-full"
required
placeholder="Type a number between 1 to 100"
min="1"
max="100" />
<label class="fieldset-label">Max Title Width</label>
<input
id="maxTitleWidth"
type="number"
class="input validator w-full"
required
placeholder="Type a number between 1 to 100"
min="1"
max="10"
title="Must be between 1 to 100" />
<p class="validator-hint">Must be between 1 to 100</p>
<label class="fieldset-label">Page Title</label>
<input
required
id="pageTitle"
type="text"
class="input w-full"
placeholder="Your page title" />
</fieldset>
</div>
<div>
<canvas
id="paperMockup"
class="mt-4 border border-gray-300 rounded-lg shadow-lg bg-white w-full"></canvas>
</div>
</body>
</html>