-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
33 lines (32 loc) · 1.14 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
<!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="./dist/css/app.css" />
<title>Laravel Mix 6</title>
</head>
<body>
<div class="h-screen flex justify-center items-center gap-6">
<h1 class="text-4xl font-semibold flex gap-2 items-center">
tailwindcss<span class="bg-teal-500 p-2 rounded-lg text-lg font-light text-white">2.0</span>
</h1>
<div class="h-16 border-r border-gray-400"></div>
<div class="h-20 w-20 relative">
<div class="circle rounded-full bg-blue-500 bg-opacity-70 w-12 h-12 mx-auto mt-1"></div>
<div
class="circle rounded-full bg-pink-500 bg-opacity-70 w-12 h-12 absolute bottom-1 left-1"
></div>
<div
class="circle rounded-full bg-teal-300 bg-opacity-70 w-12 h-12 absolute bottom-1 right-1"
></div>
</div>
<h1 class="text-4xl">
<span class="font-bold">Laravel</span> <span class="font-extralight">Mix</span>
<span>6</span>
</h1>
</div>
<script src="./dist/js/app.js"></script>
</body>
</html>