forked from thepranaygupta/html-tailwind-css-starter-pack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (21 loc) · 724 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML & Tailwind CSS Starter Pack</title>
<link rel="stylesheet" href="./main.css">
</head>
<body>
<main class="flex justify-center gap-4 flex-col min-h-screen">
<h1 class="text-3xl text-center font-bold underline">
HTML & Tailwind CSS Starter Pack
</h1>
<p class="text-center text-xl">
This is a starter pack for HTML & Tailwind CSS projects.
</p>
<img src="https://bit.ly/3wsmzTy" alt="meme" class="mx-auto">
</main>
</body>
</html>