-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (80 loc) · 2.51 KB
/
Copy pathindex.html
File metadata and controls
84 lines (80 loc) · 2.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My E-Notes</title>
<script
src="https://kit.fontawesome.com/1935d064dd.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="CSS/styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
</head>
<style>
* {
font-family: "Poppins", sans-serif;
/* font-weight: 200; */
/* font-style: normal; */
}
</style>
<body>
<header>
<div class="container">
<h1>E-Notes Web-App</h1>
<form action="">
<input
type="text"
id="note-title"
placeholder="Note title"
autocomplete="off"
/>
<textarea
id="note-text"
placeholder="Note Description"
autocomplete="off"
></textarea>
<button id="add-btn">Add Note</button>
</form>
</div>
</header>
<div class="header">
<h2>Your Notes</h2>
<hr />
</div>
<section>
<div class="container1">
<div id="notes">
<!-- <div class="note">
<div class="left">
<p class="note-counter">1</p>
</div>
<div class="content">
<h3 class="note-title">ZX</h3>
<p class="note-text">ZXC</p>
</div>
<div class="actions">
<button
id="0"
onclick="deleteNote(this.id)"
class="note-btn"
>
Delete Note
</button>
<button
id="0"
onclick="editNote(this.id)"
class="note-btn edit-btn"
>
Edit Note
</button>
</div>
</div> -->
</div>
</div>
</section>
<script src="JavaScript/script.js"></script>
</body>
</html>