-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquicknotes.html
48 lines (44 loc) · 2.16 KB
/
quicknotes.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
<!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</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
</head>
<body>
<div class="container-fluid">
<h1>CREATE YOUR OWN</h1>
<h1>Note taking space</h1>
<h3>No specific steps here</h3>
<div class="quick-notes">
<h1>Quick Notes:</h1>
<section>
<label for="note-input"> Add notes here!</label>
<input class="note btn btn-outline-primary" type="text" name="note-input">
<button class="add-note btn btn-outline-success">ADD</button>
<button class="clear btn btn-outline-warning" id="clear-button">Clear Notes</button>
</section>
<ol class="note-list"></ol>
</div>
<div class="menu-items">
<div id="about">
<button type="button" class="btn btn-light"> <a href="about.html" target="_blank"> ABOUT</a></button>
</div>
<div id="inspo">
<button type="button" class="btn btn-light"> <a href="inspo.html" target="_blank">INSPO</a></button>
</div>
<div class="connect">
<button type="button" class="btn btn-light"><a href="https://www.createrutina.com/" target="_blank">RUTINA SQUARED</a></button>
</div>
</div>
</div>
<script src="./notes.js"></script>
</body>
</html>