-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (100 loc) · 5.37 KB
/
index.html
File metadata and controls
127 lines (100 loc) · 5.37 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="icon.png" type="image/gif" sizes="16x16">
<title>Notes App</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous" />
<link rel="stylesheet" href="light-mode.css" id="theme" />
</head>
<body>
<div id="loader"></div>
<nav class="navbar navbar-expand-lg sticky-top navbar-dark bg-dark">
<!-- Notes App NavBAr Icon -->
<img id="nav_img" src="icon.png">
<a class="navbar-brand" href="#">Notes App</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
</ul>
<div class="dropdown">
<!-- Search Setting Button -->
<button class="btn btn-secondary" type="button" id="dropdownMenuButton" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
<i class="fa fa-cog" aria-hidden="true"></i>
</button>
<!-- Search by Options (Option one active Default) -->
<div id="dropdown_box" class="dropdown-menu btn-group-toggle" data-toggle="buttons"
aria-labelledby="dropdownMenuButton">
<label id="srch_1" class="btn btn-secondary active">
<input type="radio" name="options" id="option1" autocomplete="off"> Search By Title
</label>
<label id="srch_2" class="btn btn-secondary">
<input type="radio" name="options" id="option2" autocomplete="off"> Search By Note
</label>
</div>
</div>
<div class="form-inline my-2 my-lg-0">
<!-- Search Bar -->
<input class="form-control mr-sm-2" id="searchTxt" type="search" placeholder="Search"
aria-label="Search">
</div>
</div>
</nav>
<!-- Div to show Alert -->
<div id="err_1"></div>
<!-- Theme Change Button -->
<div id="themebtn" class="float-right" onclick="changeTheme()"></div>
<div class="container my-2">
<!-- Typing Effect -->
<div class="typed1"><span class="typed"></span></div>
<div class="card inpBox container_scroll">
<div class="card-body">
<div class="form-group">
<h5 class="card-title">Add title</h5>
<input type="text" class="form-control title" id="addTitle" aria-describedby="title"
placeholder="Enter title">
</div>
<h5 class="card-title">Add a note</h5>
<div class="form-group">
<textarea class="form-control note" id="addTxt" rows="3"></textarea>
</div>
<button class="btn btn-success" id="addBtn">Add Note</button>
</div>
</div>
<hr>
<h3 id="yournotes">Your Notes</h3>
<div id="toggle-show" class="float-right"><i class="fa fa-star fa-lg show-star" aria-hidden="true"></i></div>
<hr>
<!-- Note Card Shows Here -->
<div id="notes" class="row container-fluid justify-content-center"></div>
</div>
<!-- Here is footer -->
<nav class="navbar navbar-dark bg-dark fixed-bottom">
<div class="container-fluid justify-content-center">
<p id="footer_text">Created With <i class="fa fa-heart" aria-hidden="true" style="color: red;"></i><span style="color: rgb(250, 246, 45);"> By Deepanshu </span></i></p>
</div>
</nav>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/typed.js@2.0.12"></script>
<!-- <script src="https://unpkg.com/scrollreveal"></script> -->
<script src="script.js"></script>
</body>
</html>