Skip to content

Commit 01a26a5

Browse files
authored
Add tailwind-css- starter pack
0 parents  commit 01a26a5

File tree

7 files changed

+2297
-0
lines changed

7 files changed

+2297
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>HTML & Tailwind CSS Starter Pack</title>
9+
10+
<link rel="stylesheet" href="./main.css">
11+
</head>
12+
13+
<body>
14+
<main class="flex justify-center gap-4 flex-col min-h-screen">
15+
<h1 class="text-3xl text-center font-bold underline">
16+
HTML & Tailwind CSS Starter Pack
17+
</h1>
18+
<p class="text-center text-xl">
19+
This is a starter pack for HTML & Tailwind CSS projects.
20+
</p>
21+
<img src="https://bit.ly/3wsmzTy" alt="meme" class="mx-auto">
22+
</main>
23+
</body>
24+
25+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

0 commit comments

Comments
 (0)