-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stick-It.html
92 lines (92 loc) · 2.24 KB
/
Stick-It.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
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
<html>
<head>
<title>Sticky Notes</title>
<link rel="stylesheet" href="mainStyle.css" />
<script src="mainJS.js"></script>
</head>
<body>
<div class="odd_note" id="note1">
<p>
<span class="note_title"> Note #1 </span>
</p>
<textarea rows="8" cols="25" class="odd_textarea" id="input_note">
Welcome to Stick-it !
</textarea>
<img
src="trash-fill.svg"
alt="Delete Note"
class="delete-icon"
onclick="deleteNote(note1)"
/>
</div>
<div class="even_note" id="note2">
<p>
<span class="note_title"> Note #2 </span>
</p>
<textarea rows="8" cols="25" class="even_textarea" id="input_note">
Easy-to-use. User-friendly
</textarea
>
<img
src="trash-fill.svg"
alt="Delete Note"
class="delete-icon"
onclick="deleteNote(note2)"
/>
</div>
<div class="odd_note" id="note3">
<p>
<span class="note_title"> Note #3 </span>
</p>
<textarea rows="8" cols="25" class="odd_textarea" id="input_note">
Just click in and type.
</textarea
>
<img
src="trash-fill.svg"
alt="Delete Note"
class="delete-icon"
onclick="deleteNote(note3)"
/>
</div>
<div class="even_note" id="note4">
<p>
<span class="note_title"> Note #4 </span>
</p>
<textarea rows="8" cols="25" class="even_textarea" id="input_note">
Delete unwanted notes with just a click.
</textarea
>
<img
src="trash-fill.svg"
alt="Delete Note"
class="delete-icon"
onclick="deleteNote(note4)"
/>
</div>
<div class="odd_note" id="note5">
<p>
<span class="note_title"> Note #5 </span>
</p>
<textarea rows="8" cols="25" class="odd_textarea" id="input_note">
Happy Stick-iting !! 😊
</textarea
>
<img
src="trash-fill.svg"
alt="Delete Note"
class="delete-icon"
onclick="deleteNote(note5)"
/>
</div>
<!-- button to add new notes -->
<div class="new_note">
<img
id="add_note_image"
src="new-note-img.svg"
height="50"
onclick="addNewNote()"
/>
</div>
</body>
</html>