-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (48 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/css/bootstrap.css">
<script src="/static/js/bootstrap.min.js"></script>
<meta name="theme-color" content="#212529">
<link rel="manifest" href="../static/manifest.json">
<link rel="apple-touch-icon" href="/static/icons/192.png">
<link rel="shortcut icon" type="image/x-icon" href="/static/icons/icon.ico"/>
<title>Home</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Notify</a>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
</div>
</div>
</nav> <!-- the start of the homepage -->
<div class="container" style="margin-top: 30px;">
<div class="card">
<h5 class="card-header text-center">WRITE NOTES</h5>
<div class="card-body">
<h5 class="card-title">Note</h5>
<div style="margin: 20px;">
<input type="text" id="Title" class="form-control" placeholder="Enter a Title." style="margin-bottom: 20px;">
<input type="text" id="Note" class="form-control" placeholder="Enter a Note.">
</div>
<button class="btn btn-primary" onclick="add()">Add</button>
</div>
</div>
<div class="card" style="margin-top: 20px;">
<h5 class="card-header text-center">ALl NOTES</h5>
<div class="card-body">
<h5 class="card-title text-center">Notes</h5>
<span id="noteSpan">
</span>
<button class="btn btn-danger" onclick="removeAll()">Clear</button>
</div>
</div>
</div>
</body>
<script src="static/js/index.js"></script>
<script src="static/js/service.js"></script>
</html>