-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotes.html
54 lines (50 loc) · 2.72 KB
/
notes.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Notes</title>
<link rel="stylesheet" type="text/css" href='https://fonts.googleapis.com/css?family=Schoolbell'/>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
</head>
<body>
<div class = "title">
<span style="font-family: 'SchoolBell'">Notes</span>
</div>
<div class = "home">
<a href="index.html">
<span class="glyphicon glyphicon-home" style="font-size:3em;color:rgb(100, 98, 98)"></span>
</a>
<span style = "color: white;">PM:</span>
<input type="checkbox" placeholder="AM" onclick="changeColor()">
</div>
<div class="wrap">
<div class="toolbar">
<button id="bold" title="Bold (Ctrl+B)"><i class="fa fa-bold"></i></button>
<button id="italic" title="Italic (Ctrl+I)"><i class="fa fa-italic"></i></button>
<button id="underline" title="Underline (Ctrl+U)"><i class="fa fa-underline"></i></button>
<button id="align-left" title="Left"><i class="fa fa-align-left"></i></button>
<button id="align-center" title="Center"><i class="fa fa-align-center"></i></button>
<button id="align-right" title="Right"><i class="fa fa-align-right"></i></button>
<button id="list-ul" title="Unordered List"><i class="fa fa-list-ul"></i></button>
<button id="list-ol" title="Ordered List"><i class="fa fa-list-ol"></i></button>
</div>
<div class="editor" contenteditable></div>
<div id = "downloadbtn">
<a href= "notes.html" download="notes.html"><span class="glyphicon glyphicon-download-alt" style="font-size:2em;color:rgb(100, 98, 98)"></span></a>
</div>
</div>
<div class="btn-group">
<button id = "btn-left"><a href="todo.html">Todo</a></button>
<button><a href="cal.html">Calendar</a></button>
<button id = "btn-right"><a href="notes.html">Notes</a></button>
</div>
<script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous">
</script>
<script src="notes.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
</body>
</html>