-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (64 loc) · 2.45 KB
/
index.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="index.js"></script>
<link rel="stylesheet" href="style.css" />
<title>Tabloid</title>
</head>
<body>
<div id="app">
<div id="settings" style="display: none">
<!-- font dropdown -->
<form id="settingsForm">
<label for="font">Font Style</label>
<select name="font" id="font">
<option value="Arial">Arial</option>
<option value="Courier New">Courier New</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Verdana">Verdana</option>
<option value="Verdana">Monospace</option>
</select>
<!-- font size dropdown -->
<label for="fontSize">Font Size</label>
<select name="fontSize" id="fontSize">
<option value="12">Small</option>
<option value="14">Shmedium</option>
<option value="16">Medium</option>
<option value="18">Large</option>
</select>
<!-- font color -->
<label for="fontColor">Font Color</label>
<input type="color" name="fontColor" id="fontColor" />
<!-- background color -->
<label for="bgColor">Background Color</label>
<input type="color" name="bgColor" id="bgColor" />
<!-- text alignment -->
<label for="textAlign">Text Alignment</label>
<select name="textAlign" id="textAlign">
<option value="left">Left</option>
<option value="center">Center</option>
<option value="right">Right</option>
</select>
<!-- light mode / dark mode -->
<label for="theme">Theme</label>
<select name="theme" id="theme">
<option value="light">Light</option>
<option value="dark">Dark</option>
</select>
</form>
</div>
<textarea name="note" id="note" cols="80" rows="30"></textarea>
<div id="btnContainer">
<button id="settingsBtn" class="">Settings</button>
<div class="statusContainer">
<span id="statusMsg" style="display: none"></span>
</div>
<button id="saveBtn" class="">Save</button>
<button id="clearBtn" class="">Clear</button>
</div>
</div>
</body>
</html>