-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.html
More file actions
56 lines (47 loc) Β· 1.22 KB
/
Copy pathoptions.html
File metadata and controls
56 lines (47 loc) Β· 1.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>7-Category Brand Options</title>
<style>
body {
font-family: sans-serif;
margin: 20px;
}
textarea {
width: 100%;
height: 160px; /* large boxes */
}
button {
margin-top: 10px;
padding: 6px 12px;
font-size: 14px;
}
#status {
margin-top: 5px;
color: green;
}
</style>
</head>
<body>
<h1>7-Category Brand Options</h1>
<p>Edit each category's brand list (one brand per line). Large text boxes to help you see more entries!</p>
<h3>1) Canadian (π)</h3>
<textarea id="cat1"></textarea>
<h3>2) Mexican (π²π½)</h3>
<textarea id="cat2"></textarea>
<h3>3) US (β)</h3>
<textarea id="cat3"></textarea>
<h3>4) Partially US, Partially Canadian (β)</h3>
<textarea id="cat4"></textarea>
<h3>5) Partially US, Partially Mexican (β)</h3>
<textarea id="cat5"></textarea>
<h3>6) Outside (π)</h3>
<textarea id="cat6"></textarea>
<h3>7) MAGA Donor (π€‘)</h3>
<textarea id="cat7"></textarea>
<button id="saveBtn">Save</button>
<div id="status"></div>
<script src="options.js"></script>
</body>
</html>