-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (113 loc) · 4.85 KB
/
index.html
File metadata and controls
127 lines (113 loc) · 4.85 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>My Notes</title>
<style>
.container {
/* height: 100vh ; */
height: 100%;
}
.btn {
border: 1px solid #0dcaf0;
color: #0dcaf0;
}
.btn:hover {
color: black;
background-color: #0dcaf0;
}
.foot {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
/* background-color: black; */
color: white;
height: 190px;
}
.fa {
margin: 20px 20px;
color: white;
transition: .3s all;
}
.fa:hover{
color: #0dcaf0;
}
.icons {
margin-top: 15px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand text-info" href="#">My Notes</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">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
</ul>
<form class="d-flex">
<input class="form-control me-2" id="searchTxt" type="search" placeholder="Search"
aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<div class="container my-3">
<h2 class="my-3">Welcome to My Notes</h2>
<div class="card">
<div class="card-body">
<div class="mb-3">
<h5 class="card-title">Add a Title</h5>
<textarea type="text" class="form-control my-3" id="addTitle" rows="1"
placeholder="Enter Title"></textarea>
</div>
<h5 class="card-title">Add a Note</h5>
<div class="form-floating">
<textarea class="form-control my-3" placeholder="Leave a comment here" id="addTxt"></textarea>
<label for="floatingTextarea">Write Note Here</label>
</div>
<button class="btn" id="addBtn">Add Note</button>
</div>
</div>
<hr>
<h2 class="my-3">Your Notes</h2>
<hr>
<div id="notes" class="row container-fluid">
</div>
</div>
<!-- <button type="button" class="btn my-1 btn-sm" id="${index+1}" onclick="add(this.id)">Add Highlight</button>
<button type="button" class="btn my-1 btn-sm" id="${index+1}" onclick="remove(this.id)">Remove Highlight</button> -->
<!--
<span style="font-size:300%;color:yellow;">★</span>
<span style="font-size:500%;color:red;">☆</span>
<span style="font-size:500%;color:blue;">★</span> -->
<footer class="foot bg-dark">
Copyright © www.mynotes.netlify.app <br> Designed by Jenish Mor
<div class="icons">
<a href="https://www.facebook.com/jenish.mor"><i class="fa fa-facebook fa-2x"></i></a>
<a href="https://www.instagram.com/jenishmor__273"><i class="fa fa-instagram fa-2x"></i></a>
<a href="https://www.linkedin.com/in/jenish-mor-48a84b20b"><i class="fa fa-linkedin fa-2x"></i></a>
<a href="https://github.com/JenishMor"> <i class="fa fa-github fa-2x"></i></a>
</div>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4"
crossorigin="anonymous"></script>
<script src="app.js"></script>
</html>