-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
82 lines (78 loc) · 4.06 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<meta content='initial-scale=1.0, width=device-width' name='viewport'>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery-3.6.0.min.js"></script>
<script type="text/javascript" src="js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="js/common.js"></script>
<script type="text/javascript" src="js/localStorage.js"></script>
<title>Take Notes</title>
<style>
.top-buffer { margin-top:20px; }
.bottom-buffer { margin-bottom:20px; }
.fill {
height: 75%;
}
body{
background: black;
}
.text{
color:white;
}
textarea{
background-color: black;
}
.padall{
margin:10px;
}
</style>
</head>
<body>
<div id="topdiv">
<div class="form-group col-12 top-buffer row text-center">
<!-- <div class="col-sm-12 col-md-3 text">Last Saved: <span id="changeTime">0</span> </div> -->
<div class="col-sm-12 col-md-3 text">Lines: <span id="linecount">0</span> </div>
<div class="col-sm-12 col-md-3 text">Characters: <span id="characterCount">0</span> </div>
<div class="col-sm-12 col-md-3 text">Word Count: <span id="wordCount">0</span> </div>
</div>
<div class="padall col-12 top-buffer">
<a class="btn m-1 text-white btn-secondary" href="https://github.com/visnkmr/takenotes/">⭐️ on Github</a>
<div class="btn m-1 disabled text-white btn-transparent" style="opacity:1;">Macros:</div>
<button class="btn btn-dark m-1" id="startw">Start</button>
<button class="btn btn-dark m-1" id="stopw">Stop</button>
<button class="btn btn-dark m-1" id="date">Date</button>
<button class="btn btn-dark m-1" id="time">Time</button>
</div>
</div>
<div id="textAreaCont" class="padall form-group top-buffer fill">
<textarea onchange="settext()" id="textArea" style="background-color:black; color:white;" class="form-control top-buffer text fill" placeholder="Write your notes"></textarea>
</div>
<div class="row text-center bottom-buffer">
<!-- <div class="col-sm-12 col-md-4 top-buffer"><strong>Background color </strong><input type="color" id="backgroundColor" value="#000000"/></div>
<div class="col-sm-12 col-md-4 top-buffer"><strong>Font color </strong><input type="color" id="fontColor" value="#ffffff" /></div> -->
<div id="bottomdiv" class="col-12 text">
<a class="btn m-1 text-white btn-secondary" href="https://visnkmr.github.io">Other projects</a>
<strong>Font size </strong>
<select class="selectpicker" id="fontSize">
<option value="18">18</option>
<option value="20">20</option>
<option value="22">22</option>
<option value="24">24</option>
<option value="26">26</option>
<option value="28">28</option>
<option value="30">30</option>
</select>
</div>
<div class="col-12 text">
<div class="col-sm-12 text">Note last Saved on <span id="changeTime" >0</span> </div>
<br/>
<a href="https://visnkmr.github.io/issuereportwriter/">Report Issue</a><br/>
Made by <a href="https://visnkmr.github.io">Vishnu N K</a>.<br/>
Check out our apps:<br/><a href="https://play.google.com/store/apps/developer?id=Vishnu+N+K">Google Play</a><br/><a href="http://www.amazon.com/gp/mas/dl/android?p=io.github.visnkmr.kagaz&showAll=1">Amazon Appstore</a><br/><a href="https://t.me/vishnunkmr">Telegram</a><br/><a href="https://youtube.com/@vishnunk">Youtube</a><br/>
</div>
</div>
</body>
</html>