Skip to content

Instantly share code, notes, and snippets.

@bedus-creation
Created May 11, 2020 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bedus-creation/17f398a29b16678c1a093454cabdd73d to your computer and use it in GitHub Desktop.
Save bedus-creation/17f398a29b16678c1a093454cabdd73d to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.x.x/dist/alpine.min.js" defer></script>
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Roboto&display=swap" rel="stylesheet">
</head>
<body style="font-family:Roboto">
<div class="flex justify-center items-center h-screen md:-mx-4">
<div class="w-1/3 mx-4 bg-gray-100 scale-110">
<div class="px-10 my-12">
<i class="fas fa-layer-group text-3xl text-green-500"></i>
<div class="my-6">
<p class="font-semibold text-3xl text-gray-700 hover:text-blue-700">Lorem Ipsum</p>
</div>
<p class="text-gray-600 font-light">
Bootstrap card example using tailwind css with horizontal line below card title to distinguish
design.
</p>
</div>
</div>
<div class="w-1/3 mx-4 bg-gray-100 scale-110">
<div class="px-10 my-12">
<i class="fas fa-layer-group text-3xl text-green-500"></i>
<div class="my-6">
<p class="font-semibold text-3xl text-gray-700 hover:text-blue-700">Lorem Ipsum</p>
</div>
<p class="text-gray-600 font-light">
Bootstrap card example using tailwind css with horizontal line below card title to distinguish
design.
</p>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment