Code
<!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/[email protected]^1.0/dist/tailwind.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro|Roboto&display=swap" rel="stylesheet">
</head>
<body class="bg-gray-100" style="font-family:Roboto">
<div class="flex justify-center items-center h-screen md:-mx-4">
<div class="bg-white w-1/2 rounded px-6">
<div class="border-l-4 border-red-400 -ml-6 pl-6 flex items-center justify-between my-4">
<div class="font-semibold text-gray-800">Company Highlights</div>
<div class="text-red-400">See all</div>
</div>
<hr class="-mx-6">
<div class="flex items-center justify-between my-4">
<div class="w-16">
<img class="w-12 h-12 rounded-full" src="https://source.unsplash.com/50x50/?nature">
</div>
<div class="flex-1 pl-2">
<div class="text-gray-700 font-semibold">
PHP Developers
</div>
<div class="text-gray-600 font-thin">
Web House
</div>
</div>
<div class="text-red-400">20 Posts</div>
</div>
<hr class="boder-b-0 my-4">
<div class="flex items-center my-4">
<div class="w-16">
<img class="w-12 h-12 rounded-full" src="https://source.unsplash.com/50x50/?water">
</div>
<div class="flex-1 pl-2">
<div class="text-gray-700 font-semibold">
Designer
</div>
<div class="text-gray-600 font-thin">
Web House
</div>
</div>
<div class="text-red-400">300 Posts</div>
</div>
<hr class="boder-b-0 my-4">
<div class="flex items-center my-4">
<div class="w-16">
<img class="w-12 h-12 rounded-full" src="https://source.unsplash.com/50x50/?logo">
</div>
<div class="flex-1 pl-2">
<div class="text-gray-700 font-semibold">
Data Entry
</div>
<div class="text-gray-600 font-thin">
Web House
</div>
</div>
<div class="text-red-400">30 Posts</div>
</div>
</div>
</div>
</body>
</html>