forked from Sulagna-Dutta-Roy/GGExtensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
35 lines (35 loc) · 925 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Accessibility Enhancer Options</title>
<style>
body {
font-family: Arial, sans-serif;
}
label {
display: block;
margin: 10px 0 5px;
}
</style>
</head>
<body>
<h2>Extension Options</h2>
<form id="optionsForm">
<label for="fontSize">Default Text Size:</label>
<select id="fontSize">
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
</select>
<label for="bgColor">Default Background Color:</label>
<input type="color" id="bgColor" name="bgColor" value="#ffffff">
<label for="contrast">Default Contrast:</label>
<select id="contrast">
<option value="normal">Normal</option>
<option value="high">High</option>
</select>
<button type="submit">Save</button>
</form>
<script src="options.js"></script>
</body>
</html>