-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (95 loc) · 4.26 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
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
<!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">
<title>Note It Down !</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">NoteItDown</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-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 me-auto mb-2 mb-lg-0">
<li class="nav-item">
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" type="search" placeholder="Search" id="searchTxt"
aria-label="Search">
</form>
</div>
</div>
</nav>
<!-- Quote section -->
<div class="container my-5">
<h1 class="display-1">Note Down Your Plans!</h1>
<figure class="my-5">
<div class="my-5">
<blockquote class="blockquote">
<p>“A goal without a plan is just a wish.”
</p>
</blockquote>
<figcaption class="blockquote-footer">
<cite title="Source Title">Anonymous</cite>
</figcaption>
</div>
</figure>
</div>
<!-- Accept Input -->
<div class="container">
<!-- card-body -->
<div class="card">
<div class="card-body">
<!-- heading section -->
<div class="input-group mb-3">
<span class="input-group-text" id="inputGroup-sizing-default">Add Title</span>
<input id="addHeading" type="text" class="form-control" aria-label="Sizing example input"
aria-describedby="inputGroup-sizing-default">
</div>
<!-- add note here -->
<h5 class="card-title">Add Note Here</h5>
<!-- textarea -->
<div class="mb-3">
<textarea id="addTxt" class="form-control" rows="3" ></textarea>
</div>
<!-- save note button -->
<button class="btn btn-primary" id="saveBtn">Save Note</button>
</div>
</div>
</div>
<!-- status notification area -->
<div class="container" id="notification">
</div>
<!-- display output -->
<div class="container my-5" data-bs-scroll="true" data-bs-backdrop="true">
<h2>Your Notes</h2>
<hr>
<div class="row container-fluid" id="notes">
<!-- notes card -->
<!-- this will be inserted dynamically using javascript -->
</div>
</div>
<!-- bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js"
integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.3/dist/umd/popper.min.js"
integrity="sha384-eMNCOe7tC1doHpGoWe/6oMVemdAVTMs2xqW4mwXrXsW0L84Iytr2wi5v2QjrP/xp"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.min.js"
integrity="sha384-cn7l7gDp0eyniUwwAZgrzD06kc/tftFf19TOAs2zVinnD/C7E91j9yyk5//jjpt/"
crossorigin="anonymous"></script>
<!-- notesApp Js -->
<script src="engine.js"></script>
</body>
</html>