-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (78 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<section class="options">
<h1>Type Checker</h1>
<div class="option">
<label>Your Text</label>
<input
type="text"
name="sentence"
placeholder="The quick brown fox..."
value=""
/>
</div>
<div class="option">
<label>Typeface</label>
<select name="typeface">
<option value="Fira Sans">Fira Sans</option>
<option value="Prompt">Prompt</option>
<option value="Taviraj">Taviraj</option>
<option value="Trirong">Trirong</option>
</select>
</div>
<div class="option">
<label>Type size <span class="typesize-output">64px</span></label>
<input type="range" name="typesize" min="12" max="200" value="64" />
</div>
<div class="option">
<label>Font weight <span class="fontweight-output">400</span></label>
<input
type="range"
name="fontweight"
min="100"
max="900"
value="400"
step="100"
/>
</div>
<div class="option">
<label>Leading <span class="lineheight-output">1.5</span></label>
<input
type="range"
name="lineheight"
min="0.7"
max="2.5"
value="1.5"
step="0.1"
/>
</div>
<div class="option">
<label>Kerning <span class="kerning-output">1.5</span></label>
<input
type="range"
name="kerning"
min="-20"
max="20"
value="1"
step="0.1"
/>
</div>
<div class="option option-checkbox">
<label>Italic</label>
<input type="checkbox" name="italic" />
</div>
<div class="option">
<label>Colors</label>
<div class="colors">
<div class="selected" style="background-color: #2a2a2a; color: white">
a
</div>
<div style="background-color: white; color: #2a2a2a">a</div>
<div style="background-color: #63ff03; color: #2a2a2a">a</div>
<div style="background-color: rgb(38, 0, 255); color: white">a</div>
</div>
</div>
</section>
<section class="output">The quick brown fox jumps over the lazy dog</section>
<script src="typechecker.js"></script>