mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
21 lines
324 B
HTML
21 lines
324 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
<form>
|
|
<fieldset>
|
|
<legend>Options</legend>
|
|
<p>Favourite colour</p>
|
|
<input type="text" id="colour" >
|
|
<button type="submit">Save</button>
|
|
</fieldset>
|
|
</form>
|
|
<script src="options.js"></script>
|
|
</body>
|
|
|
|
</html>
|