Skip to content

Commit 7f72ba5

Browse files
authored
Create index.html
1 parent 5b48012 commit 7f72ba5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/index.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
</div>
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

Comments
 (0)