-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
41 lines (32 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<title>Syntacs -- Language Learning </title>
<link rel="stylesheet" type="text/css" href="options.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="options.js"></script>
</head>
<body>
<div class='box'>
<h1 class = 'title' id= "titleOptions">Syntacs Extension Options</h1>
<div class='dropdownOptions'>
<div class='dropdownOption'>
<h2 class = 'dropdownLabel' id= 'myLanguage'>My Language:</h2>
<select class = 'dropdown' id='language'>
<option value = 'es' id = 'languageS'>Spanish</option>
<!-- <option value = 'ja'>Japanese</option>-->
</select>
</div>
<div class='dropdownOption'>
<h2 class = 'dropdownLabel' id= 'voiceP'>Pronunciation Voice:</h2>
<select class = 'dropdown' id='voiceSelect'>
</select>
</div>
</div>
<div class='saveButtons'>
<button id='save'>Save</button>
<button id='reset'>Reset</button>
</div>
</div>
</body>
</html>