-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
36 lines (36 loc) · 1.06 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
<!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>Tailwind CSS</title>
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div
class="section w-full h-screen flex items-center justify-center flex-wrap"
>
<div class="wrap text-center">
<h1 class="text-[50px] w-full leading-[1.1] mb-3 font-heading">
TailwindCSS HTML Boilerplate
</h1>
<p class="text-2xl mb-10">By: Abdul Kader</p>
<div class="social">
<a target="_blank" class="p-4" href="http://abdulkader.me/"
>Website</a
>
<a target="_blank" class="p-4" href="https://github.com/Abdulkader69"
>Github</a
>
<a
target="_blank"
class="p-4"
href="https://www.facebook.com/abdulkaderyt/"
>Facebook</a
>
</div>
</div>
</div>
</body>
</html>