Skip to content

Commit c693b41

Browse files
Create index.html
1 parent ee44fbe commit c693b41

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

noteapp/index.html

+17
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)