-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSlate.html
More file actions
executable file
·45 lines (40 loc) · 1.46 KB
/
Slate.html
File metadata and controls
executable file
·45 lines (40 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<title>Slate</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="public/favicons/favicon.ico" rel="shortcut icon">
<link href="assets/stylesheets/Slate.css" rel="stylesheet">
<script type="text/javascript" src="assets/scripts/jquery.min.js"></script>
</head>
<body bgcolor="SlateGray">
<div class="main-container">
<div id="top-bar">
<h1 align="center" id="heading">Slate</h1>
<h4 align="center" id="sub-heading">Note it well.</h4>
</div>
<div id="side-bar">
<div id="buttons">
<button type="button" class="button" style="float: left;" id="add-button" onclick="noteCreate(event)">Add</button>
<button type="button" class="button" style="float: right;" id="sort-button" onclick="noteSort()">Sort</button>
</div>
<div id="input-note">
<input type="text" id="title-input" placeholder="Enter Title">
<select name="priority" class="priority">
<option value="3">High</option>
<option value="2" selected>Medium</option>
<option value="1">Low</option>
</select>
<textarea id="content-input" placeholder="Say something."></textarea>
</div>
</div>
<div id="notes-container">
</div>
</div>
<footer>
<div class="footer-content">Helinski ⚛</div>
</footer>
<script type="text/javascript" src="assets/scripts/Slate.js"></script>
</body>
</html>