-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNote.html
More file actions
89 lines (86 loc) · 4.31 KB
/
Note.html
File metadata and controls
89 lines (86 loc) · 4.31 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
<!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,viewport-fit=cover">
<title>Notes</title>
<link rel="shortcut icon" href="icon16.png" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="css/stylenote.css">
<link rel="html" href="index.html">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap" rel="stylesheet">
<link rel="manifest" href="app.webmanifest">
<link rel="apple-touch-icon" href="icon100.png">
<script src="sw-register.js"></script>
</head>
<body>
<!-- This is for your navbar from bootstrapand some manual css linked for insering logo and all -->
<nav class="navbar sticky-top navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid" style="font-family: 'Baloo Bhai 2', cursive;">
<a href="index.html"><img class="logo" src="attachments/download.jpg" alt="Logo Here"></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" style="font-family: 'Baloo Bhai 2', cursive;">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/"><span class="H">Home</span></a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="about.html"><span class="H">About us</span></a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="Suggest.html"><span class="H">Complaint/Suggest
Us</span></a>
</li>
</ul>
<form class="d-flex my-2 my-lg-0">
<input class="form-control me-2" id="searchTxt" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<!-- For adding title and text in text area from bootstrap -->
<div class="container Addnote my-3">
<h2>Welcome to Notes</h2>
<hr>
<div class="card Outercoverage">
<div class="card-body">
<h5 class="card-title my-3">Add Title</h5>
<div class="mb-3">
<textarea class="form-control" id="addtitle" rows="1" placeholder="Add your Title here"></textarea>
<h5 class="card-title my-3">Add Notes Here</h5>
<div class="mb-3">
<textarea class="form-control" id="addtext" rows="5" placeholder="Add your text Here"></textarea>
</div>
</div>
<div class="form-check my-2">
<input class="form-check-input" type="checkbox" value="" id="flexCheckDefault">
<label class="form-check-label" for="flexCheckDefault">
<h5>Mark important</h5>
</label>
</div>
<button class="btn btn-primary" id="addbtn">Add note</button>
</div>
<!-- From here we gonna display the notes we added there -->
</div>
<hr>
<h2>Your Notes</h2>
<!-- This is an empty div in which we create those added texts and insert them into this using add note button and javascript we done in Note.js -->
<div id="notes" class="container-fluid row">
</div>
</div>
<script src="javascript/Note.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.min.js"
integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
crossorigin="anonymous"></script>
</body>
</html>