-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.6 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Festival greeting app to greet all your friends" />
<meta
property="og:description"
content="Greet all your friends through this greeting app. Just try it!"
/>
<meta
property="og:image"
src="./assets/images/festival-greeting.png"
/>
<title>Festival Greeting App</title>
<!-- font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap"
rel="stylesheet"
/>
<!-- tailwindcss -->
<link rel="stylesheet" href="./assets/css/main.css" />
</head>
<body class="bg-gray-900" >
<div class="max-w-xl mx-auto flex items-center justify-center h-screen">
<form class="bg-white p-10 rounded space-y-4">
<input
type="text"
name="fullName"
id="fullName"
placeholder="Enter your name"
class="bg-gray-100 rounded w-full px-3 py-2 outline-none"
autofocus
required
/>
<button
class="px-4 py-2 w-full text-white rounded bg-blue-500 hover:bg-blue-600"
>
Create your greeting
</button>
</form>
</div>
<script type="module" src="./assets/js/main.js"></script>
</body>
</html>