-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (43 loc) · 1.88 KB
/
index.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notables</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>Notables</h1>
<!-- need a input -->
<!-- this will be a form and a submit for the form -->
<div class="input_fields">
<input class="noteTitle" type="text" name="noteTitle" placeholder="note title">
<input class="noteDescription" type="text" name="noteDescription" placeholder="description">
<button class="noteSubmit">SUBMIT</button>
</div>
<div class="option_holder">
<button class="option save_Note" >Save Notes</button>
<button class="option note_history" >Note History</button>
<button class="option load_note" >Load Notes</button>
<button class="option clear_all" >Clear All</button>
</div>
<section>
<!--<div class="note">
<div class="details">
<h2 class="title">Meditate</h2>
<p class="description">Today it would be great to mediation for a little bit and keep my headspace score alive</p>
</div>
<div class="options">
<button class="edit">edit</button>
<button class="complte">complete</button>
</div>
</div> -->
</section>
<!-- need somewhere to display the notes that currently I have -->
<!-- this will be a created div to display the notes and mark them as completed -->
<!-- note on left >>>> complted on right >>>> drop down menu -->
<footer>
</footer>
<script src="script.js"></script>
<!-- <script src="script2.js"></script> -->
</body>
</html>