Skip to content

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
HACKERPRO908 authored Mar 6, 2024
1 parent f206c0a commit 89924c7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notebook App</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
<div class="container">
<h1>Notebook App</h1>
<div id="notes-container">
<input type="text" id="note-input" placeholder="Enter your note">
<button onclick="addNote()">Add Note</button>
</div>
<ul id="notes-list"></ul>
</div>
<script src="/script.js"></script>
</body>
</html>

0 comments on commit 89924c7

Please sign in to comment.