-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
110 lines (96 loc) · 5.75 KB
/
header.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="output.css" rel="stylesheet">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" rel="stylesheet">
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CEVX2SLENS"></script>
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<script src="https://cdn.tailwindcss.com"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(document).ready(function(){
$("#servicesDropbtn").click(function(e) {
e.preventDefault();
$("#servicesDropdown").toggleClass("show");
});
});
window.onclick = function(e) {
if (!e.target.matches('#servicesDropbtn')) {
var myDropdown = document.getElementById("servicesDropdown");
if (myDropdown.classList.contains('show')) {
myDropdown.classList.remove('show');
}
}
}
</script>
</head>
<body>
<div class="relative bg-white shadow">
<div class="max-w-7xl mx-auto px-4 sm:px-6">
<div class="flex justify-between items-center border-b-2 border-gray-100 py-6 md:justify-start md:space-x-10">
<div class="flex justify-start lg:w-0 lg:flex-1">
<a href="/">
<span class="sr-only">Workflow</span>
<img class="h-8 w-auto sm:h-10" src="Assets/gapp.svg" alt="">
</a>
</div>
<nav class="hidden md:flex space-x-10">
<div class="relative">
<button type="button" id="servicesDropbtn" class="text-gray-500 group bg-white rounded-md inline-flex items-center text-base font-medium hover:text-gray-900 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" aria-expanded="false">
Services
<svg class="text-gray-400 ml-2 h-5 w-5 group-hover:text-gray-500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" aria-hidden="true">
<path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd" />
</svg>
</button>
<div class="absolute z-10 -ml-4 mt-3 transform px-2 w-screen max-w-md sm:px-0 lg:ml-0 lg:left-1/2 lg:-translate-x-1/2 dropdown-content" id="servicesDropdown">
<div class="rounded-lg shadow-lg ring-1 ring-black ring-opacity-5 overflow-hidden">
<div class="relative grid gap-6 bg-white px-5 py-6 sm:gap-8 sm:p-8">
<a href="mobile-application.html" class="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50">
<div class="ml-4">
<p class="text-base font-medium text-gray-900">Mobile Application</p>
</div>
</a>
<a href="gapp-finder.html" class="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50">
<div class="ml-4">
<p class="text-base font-medium text-gray-900">GAPP Finder</p>
</div>
</a>
<a href="shipping.html" class="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50">
<div class="ml-4">
<p class="text-base font-medium text-gray-900">Shipping Method</p>
</div>
</a>
<a href="#" class="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50">
<div class="ml-4">
<p class="text-base font-medium text-gray-900">Integrations</p>
</div>
</a>
<a href="payment-gateways.html" class="-m-3 p-3 flex items-start rounded-lg hover:bg-gray-50">
<div class="ml-4">
<p class="text-base font-medium text-gray-900">Payment Gateways</p>
</div>
</a>
</div>
</div>
</div>
</div>
<a href="pricing.html" class="text-base font-medium text-gray-500 hover:text-gray-900"> Pricing </a>
<a href="contact.html" class="text-base font-medium text-gray-500 hover:text-gray-900"> Contact </a>
<a href="blogs.html" class="text-base font-medium text-gray-500 hover:text-gray-900"> Blog </a>
</nav>
<div class="hidden md:flex items-center justify-end md:flex-1 lg:w-0">
<a href="https://admin.gapp.pk/" class="whitespace-nowrap text-base font-medium text-gray-500 hover:text-gray-900"> Sign in </a>
<a href="pricing.html" class="ml-8 whitespace-nowrap inline-flex items-center justify-center px-4 py-2 border border-transparent rounded-md shadow-sm text-base font-medium text-white bg-indigo-600 hover:bg-indigo-700"> Sign up </a>
</div>
</div>
</div>
</div>
</body>
</html>