We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee44fbe commit c693b41Copy full SHA for c693b41
noteapp/index.html
@@ -0,0 +1,17 @@
1
+<!DOCTYPE html>
2
+<html>
3
+<head>
4
+ <title>Simple Notes App</title>
5
+ <link rel="stylesheet" type="text/css" href="style.css">
6
+</head>
7
+<body>
8
+ <h1>Simple Notes App</h1>
9
+ <div class="container">
10
+ <textarea id="note" placeholder="Enter your note here..."></textarea>
11
+ <button onclick="saveNote()">Save Note</button>
12
+ <button onclick="clearNote()">Clear Note</button>
13
+ <div id="notes"></div>
14
+ </div>
15
+ <script src="script.js"></script>
16
+</body>
17
+</html>
0 commit comments