forked from Aryamanz29/Web-Ideas
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
89b2133
commit 8df43a4
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
<!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>Notes App</title> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-lg navbar-light bg-primary"> | ||
<a class="navbar-brand" href="#"><h3>Note Keeper</h3></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"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="#" | ||
><h5>Home</h5><span class="sr-only">(current)</span></a | ||
> | ||
</li> | ||
</ul> | ||
<form class="form-inline my-2 my-lg-2"> | ||
<input | ||
class="form-control mr-sm-2" | ||
id="searchTxt" | ||
type="search" | ||
placeholder="Search" | ||
aria-label="Search" | ||
/> | ||
<button class="btn btn-outline-light my-2 my-sm-0" type="submit"> | ||
Search | ||
</button> | ||
</form> | ||
</div> | ||
</nav> | ||
|
||
<div class="container my-50"> | ||
<h1>Welcome to Notes Keeper</h1> | ||
<div class="card"> | ||
<div class="card-body"> | ||
<h5 class="card-title">Add a note</h5> | ||
<div class="form-group"> | ||
<textarea id="addTxt" rows="3" class="form-control"></textarea> | ||
</div> | ||
<button id="addBtn" class="btn btn-primary">Add Note</button> | ||
</div> | ||
</div> | ||
<hr /> | ||
<h1>Your Notes</h1> | ||
<hr /> | ||
<div id="notes" class="row container-fluid"> | ||
</div> | ||
|
||
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script> | ||
<script src="js/app.js"></script> | ||
</body> | ||
</html> |