|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + |
| 4 | +<head> |
| 5 | + <meta charset="UTF-8"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 7 | + <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
| 8 | + <title>Notes App</title> |
| 9 | + <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" |
| 10 | + integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> |
| 11 | +</head> |
| 12 | + |
| 13 | +<body> |
| 14 | + |
| 15 | + <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> |
| 16 | + <a class="navbar-brand" href="#">Magic Notes</a> |
| 17 | + <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" |
| 18 | + aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> |
| 19 | + <span class="navbar-toggler-icon"></span> |
| 20 | + </button> |
| 21 | + |
| 22 | + <div class="collapse navbar-collapse" id="navbarSupportedContent"> |
| 23 | + <ul class="navbar-nav mr-auto"> |
| 24 | + <li class="nav-item active"> |
| 25 | + <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a> |
| 26 | + </li> |
| 27 | + |
| 28 | + </ul> |
| 29 | + <form class="form-inline my-2 my-lg-0"> |
| 30 | + <input class="form-control mr-sm-2" id="searchTxt" type="search" placeholder="Search" aria-label="Search"> |
| 31 | + <button class="btn btn-outline-success my-2 my-sm-0" type="submit">Search</button> |
| 32 | + </form> |
| 33 | + </div> |
| 34 | + </nav> |
| 35 | + |
| 36 | + |
| 37 | + <div class="container my-3"> |
| 38 | + <h1>Welcome To Magic Notes</h1> |
| 39 | + <div class="card"> |
| 40 | + <div class="card-body"> |
| 41 | + <h5 class="card-title">Title</h5> |
| 42 | + <div class="form-group"> |
| 43 | + <textarea class="form-control" id="addTitle" rows="1"></textarea> |
| 44 | + </div> |
| 45 | + <h5 class="card-title">Add a note</h5> |
| 46 | + <div class="form-group"> |
| 47 | + <textarea class="form-control" id="addTxt" rows="3"></textarea> |
| 48 | + </div> |
| 49 | + <button class="btn btn-primary" id="addBtn">Add Note</button> |
| 50 | + </div> |
| 51 | + </div> |
| 52 | + <hr> |
| 53 | + <h1>Your Notes</h1> |
| 54 | + <hr> |
| 55 | + <div id="notes" class="row container-fluid"> </div> |
| 56 | + </div> |
| 57 | + |
| 58 | + <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" |
| 59 | + integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" |
| 60 | + crossorigin="anonymous"></script> |
| 61 | + <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" |
| 62 | + integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" |
| 63 | + crossorigin="anonymous"></script> |
| 64 | + <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" |
| 65 | + integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" |
| 66 | + crossorigin="anonymous"></script> |
| 67 | + <script src="index.js"></script> |
| 68 | +</body> |
| 69 | + |
| 70 | +</html> |
0 commit comments