diff options
Diffstat (limited to 'pages/options')
-rw-r--r-- | pages/options/options.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/pages/options/options.html b/pages/options/options.html new file mode 100644 index 00000000..f51f7201 --- /dev/null +++ b/pages/options/options.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> + +<head> + <title>My Test Extension Options</title> +</head> + +<body> + + Favorite color: + <select id="color"> + <option value="red">red</option> + <option value="green">green</option> + <option value="blue">blue</option> + <option value="yellow">yellow</option> + </select> + + <label> + <input type="checkbox" id="like"> + I like colors. + </label> + + <div id="status"></div> + <button id="save">Save</button> +</body> + +</html> \ No newline at end of file |