-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (29 loc) · 868 Bytes
/
index.html
File metadata and controls
30 lines (29 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Notes Website</title>
<link rel="stylesheet" type="text/css" href="notes.css">
</head>
<body>
<header>
<h1>My Notes</h1>
</header>
<main>
<div class="container">
<div class="note-list" id="noteList">
<!-- Add more notes here -->
</div>
<div class="note-form">
<h2>Create a New Note</h2>
<form id="noteForm">
<input type="text" id="noteTitle" placeholder="Title" required>
<textarea id="noteContent" placeholder="Write your note here" required></textarea>
<button type="submit">Save Note</button>
</form>
</div>
</div>
</main>
<script src="notes.js"></script>
</body>
</html>