-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.39 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.39 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
<html>
<head>
<script src="util.js" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css"/>
</head>
<body>
<div class="main-container">
<div class="note note-active" id="first">
<textarea></textarea>
</div>
<div class="note">
<textarea></textarea>
</div>
<div class="note">
<textarea></textarea>
</div>
<div class="placeholder" id="note-add-alternate">
<p class="placeholder-text">
You have no tasks on the agenda
</p>
<i class="fa fa-plus"></i>
<p class="placeholder-text"><strong>Add one</strong></p>
</div>
<div class="toolbar" id="toolbar">
<ul>
<li id="note-approve"><i class="fa fa-check" aria-hidden="true" title="Mark as Done"> </i></li>
<li id="note-remove"><i class="fa fa-times" aria-hidden="true" title="Delete"> </i></li>
</ul>
</div>
</div>
<div class="notes-toolbar">
<ul>
<li id="note-show">
<i class="fa fa-clone" aria-hidden="true" title="Show Notes"></i>
</li>
<li id="note-add" class="blue"><i class="fa fa-plus" aria-hidden="true" title="Add Note"></i></li>
</ul>
</div>
</body>
</html>