We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b48012 commit 7f72ba5Copy full SHA for 7f72ba5
1 file changed
src/index.html
@@ -0,0 +1,27 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <title>QuickNotes</title>
6
+ <link rel="stylesheet" href="style.css">
7
+</head>
8
+<body>
9
+ <div class="container">
10
+ <h1>QuickNotes</h1>
11
+
12
+ <div class="note-input">
13
+ <input type="text" id="noteTitle" placeholder="Title">
14
+ <textarea id="noteContent" placeholder="Write your note..."></textarea>
15
+ <button id="addNote">Add Note</button>
16
+ </div>
17
18
+ <div id="notesList"></div>
19
20
21
+ <!-- Firebase SDK -->
22
+ <script src="https://www.gstatic.com/firebasejs/11.0.0/firebase-app.js"></script>
23
+ <script src="https://www.gstatic.com/firebasejs/11.0.0/firebase-firestore.js"></script>
24
+ <script src="firebaseConfig.js"></script>
25
+ <script src="app.js"></script>
26
+</body>
27
+</html>
0 commit comments