forked from GoogleChromeLabs/link-to-text-fragment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
69 lines (68 loc) · 1.68 KB
/
options.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
<!doctype html>
<html lang="en">
<head>
<title>Options</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
font-family: system-ui, sans-serif;
}
h1 {
font-size: 1.25rem;
}
label {
font: inherit;
}
</style>
</head>
<body>
<h1></h1>
<form>
<p>
<label
><input type="radio" id="rich" name="style" />
<span class="rich"></span
></label>
</p>
<p>
<label
><input type="radio" id="raw" name="style" /> <span class="raw"></span
></label>
</p>
<p>
<label
><input type="radio" id="rich-plus-raw" name="style" />
<span class="rich-plus-raw"></span
></label>
</p>
<h4></h4>
<p>
<label
><input type="radio" id="link-text-option-1" name="link-text" />
<span class="link-text-option-1"></span
></label>
</p>
<p>
<label
><input type="radio" id="link-text-option-2" name="link-text" />
<span class="link-text-option-2"></span
></label>
</p>
<p>
<label
><input type="radio" id="link-text-option-3" name="link-text" />
<span class="link-text-option-3"></span
></label>
</p>
<p>
<label
><input type="radio" id="link-text-option-4" name="link-text" />
<span class="link-text-option-4"></span
></label>
<input type="text" id="link-text-input" name="link-text" />
</p>
</form>
<script src="options.js"></script>
</body>
</html>