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>
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.min.js" defer></script>
<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 style="font-family:Roboto">
<nav x-data="{show:false}" style="background-color: #0c5dae;">
<div class="container mx-auto px-6 lg:px-20 py-3 flex items-center justify-between flex-wrap">
<div class="flex items-center flex-shrink-0 text-white mr-6">
<a href="#">
<img class="h-8" src="/storage/documents/8pPa4iYUk2lbAqJaNURoD9rewdy6LleOQwzjKT63.png" alt="">
</a>
</div>
<div class="block md:hidden ">
<button @click="show=!show"
class="flex items-center px-3 py-2 border rounded text-gray-100 border-gray-200 hover:text-white hover:border-white">
<svg class="fill-current h-4 w-4" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<title>Menu</title>
<path d="M0 3h20v2H0V3zm0 6h20v2H0V9zm0 6h20v2H0v-2z" />
</svg>
</button>
</div>
<div @click.away="show = false" :class="{ 'block': show, 'hidden': !show }"
class="w-full block flex-grow border-t lg:border-0 mt-4 lg:mt-0 md:flex md:justify-end md:w-auto">
<div>
<a href="#"
class="block md:inline-block text-sm px-4 py-2 leading-none rounded text-gray-100 border-white hover:border-transparent mt-4 md:mt-0">Home</a>
<a href="#"
class="block md:inline-block text-sm px-4 py-2 leading-none rounded text-gray-100 border-white hover:border-transparent mt-4 md:mt-0">Services</a>
<a href="#"
class="block md:inline-block text-sm px-4 py-2 leading-none rounded text-gray-100 border-white hover:border-transparent mt-4 md:mt-0">Products</a>
</div>
</div>
</div>
</nav>
</body>
</html>