-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 954 Bytes
/
index.html
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
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="a fast, simple textarea that just works">
<meta name="author" content="GJ Tiquia">
<link rel="stylesheet" href="src/style.css">
<title>mini textarea</title>
</head>
<body class="h-dvh p-4 pb-2 flex flex-col items-center">
<h1 class="font-bold text-3xl">
mini <code><textarea/></code>
</h1>
<h2 class="pb-4">
a fast, simple <code><textarea/></code> that just works
</h2>
<textarea spellcheck="false" class="
flex-grow w-full max-w-screen-md
border-2 border-gray-500
rounded-md
resize-none
p-1
"></textarea>
<a href="https://github.com/gjtiquia/mini-textarea" target="_blank"
class="pt-2 text-blue-500 hover:text-blue-600 active:text-blue-700 underline">github source code</a>
</body>
</html>