-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (26 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
36 lines (26 loc) · 1.23 KB
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
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Note App</title>
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
</head>
<body>
<main class="min-h-screen bg-gradient-to-t from-cyan-100 via-blue-300 to-indigo-400 p-6 font-mono">
<section class="max-w-5xl mx-auto">
<h1 class="text-4xl font-bold text-slate-800 mb-6">My Notes</h1>
<form id="note" autocomplete="off">
<input id="inp" class="border rounded-xl p-3 w-full" type="text" placeholder="Type your note title">
<textarea id="txt" class="border w-full h-60 my-5 rounded-2xl p-3" placeholder="Type your note here"></textarea>
<button id="btn" class="border-2 p-3 rounded-2xl font-bold text-white bg-sky-400 hover:bg-sky-600">Add Note</button>
</form>
</section>
<section class="max-w-5xl mx-auto py-6">
<h1 class="text-4xl font-bold text-slate-800 mb-6">Recent Notes</h1>
<div class="forCard flex gap-3 flex-wrap"></div>
</section>
</main>
<script src="script.js"></script>
</body>
</html>