-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
49 lines (48 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Options</title>
<style>
.response {
min-height: 1.5rem;
color: #555;
transition-duration: .2s;
}
.row {
border-top: 1px solid #c1c1c1;
-moz-box-align: center;
min-height: 35px;
line-height: 35px;
text-shadow: 0 1px 1px #fefffe;
}
.row .title {
width: 264px;
display: inline-block;
cursor: default;
margin-top: 1px;
margin-bottom: 2px;
margin-inline-end: 5px;
font: message-box;
font-size: 1rem;
color: #333;
}
</style>
</head>
<body>
<div class="response"></div>
<div class="row">
<label class="title" for="cnrtldicovector">Choose dictionnary</label>
<select id="cnrtldicovector">
<option value="lex">Lexicography (definition)</option>
<option value="syn">Synonymy</option>
<option value="ant">Antonymy</option>
<option value="ety">Etymology</option>
<option value="mor">Morphology</option>
<option value="pro">Proxemics</option>
<option value="con">Consistency</option>
</select>
</div>
<script src="options.js"></script>
</body>
</html>