-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 989 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 989 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Notepad</title>
<link rel='shortcut icon' type='image/x-icon' href='favicon.ico' />
<link rel="stylesheet" href="css/style.css">
</head>
<body id="body">
<div id="mySidenav" class="sidenav">
<a href="#" id="green" onclick="changeColor('#4CAF50','#ffffff')"></a>
<a href="#" id="blue" onclick="changeColor('#2196F3','#ffffff')"></a>
<a href="#" id="red" onclick="changeColor('#f44336','#ffffff')"></a>
<a href="#" id="black" onclick="changeColor('#555','#ffffff')"></a>
<a href="#" id="skyblue" onclick="changeColor('#9fd6ff','#0051ff')"></a>
</div>
<div class="loader" style="display: none"></div>
<div id="notepad_div" contenteditable="true">
</div>
<script src="https://www.gstatic.com/firebasejs/5.5.8/firebase.js"></script>
<script src="js/init.js"></script>
<script src="js/firebase-store.js"></script>
<script src="js/home.js"></script>
</body>
</html>