-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
43 lines (43 loc) · 1.57 KB
/
Copy pathoptions.html
File metadata and controls
43 lines (43 loc) · 1.57 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Tab Page Options</title>
<link rel="stylesheet" href="options.css">
</head>
<body>
<div class="container">
<h1 class="title">New Tab Page Options</h1>
<form id="options-form" class="form">
<div class="form-group">
<label for="apiKey" class="label">OpenWeatherMap API Key:</label>
<input type="text" id="apiKey" class="input" placeholder="API Key">
</div>
<div class="form-group">
<label for="temperatureUnit" class="label">Temperature Unit:</label>
<select id="temperatureUnit" class="select">
<option value="celsius">Celsius</option>
<option value="fahrenheit">Fahrenheit</option>
</select>
</div>
<div class="form-group">
<label for="wallpaperColor" class="label">Wallpaper Color:</label>
<input type="color" id="wallpaperColor" class="input">
</div>
<div class="form-group">
<label for="textColor" class="label">Text Color:</label>
<input type="color" id="textColor" class="input">
</div>
<div class="checkbox-container">
<label for="topSitesCheckbox" class="checkbox-label">Show Top Sites</label>
<input type="checkbox" id="toggleTopSites" class="checkbox">
</div>
<div class="form-group">
<button type="submit" class="optionItem button submitButton">Save Options</button>
</div>
</form>
</div>
<script src="options.js"></script>
</body>
</html>