-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 1.12 KB
/
index.html
File metadata and controls
32 lines (32 loc) · 1.12 KB
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
<!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" />
<link rel="stylesheet" href="css/tailwind-output.css" />
<title>Custom Fonts in TailwindCSS</title>
</head>
<body class="bg-blue-700" id="body">
<div class="mt-20 flex flex-col items-center justify-center">
<h1
class="mb-10 w-full px-10 text-center font-primary text-7xl text-gray-100 md:w-1/2 md:px-2"
>
These are custom fonts loaded from file.
</h1>
<p class="mx-auto my-10 max-w-3xl px-20 text-white">
These are default fonts. <br />
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quod maiores,
recusandae veritatis
</p>
<p
class="mx-auto my-10 max-w-3xl px-20 font-primary text-3xl font-thin text-white"
>
These are custom fonts fonts. <br />
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Quod maiores,
recusandae veritatis
</p>
</div>
</body>
<script></script>
</html>