-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
444da77
commit 78183fc
Showing
9 changed files
with
61 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,38 +6,43 @@ | |
<title>Document</title> | ||
</head> | ||
<body> | ||
<div class="lg:px-[150px] w-full py-2 bg-[#f8f8f8] justify-between items-center gap-2 flex flex-col lg:flex-row"> | ||
<!-- Main container for the header section --> | ||
<div class="bg-[#f8f8f8]"> | ||
<div class="lg:px-[150px] w-full py-2 container mx-auto justify-between items-center gap-2 flex flex-col lg:flex-row"> | ||
<!-- Main container for the header section --> | ||
|
||
<!-- Navigation and language selection (visible on small screens and up) --> | ||
<ul class="hidden sm:flex text-center min-[360px]:gap-3"> | ||
<li class="self-stretch text-[#666666] text-[13px] flex"> | ||
<form class="max-w-sm mx-auto"> | ||
<div class="relative"> | ||
<!-- Dropdown button for language selection --> | ||
<div id="countries-button" class="flex"> | ||
<img src="./../assets/images/countries/usa.svg" alt="USA" class="w-5 h-5 mr-2"> English | ||
<div id="countries-button" class="flex gap-2"> | ||
<img src="./../assets/images/countries/usa.svg" alt="USA" class="w-5 h-5"> | ||
<span>English</span> | ||
</div> | ||
|
||
<!-- Dropdown menu for available languages --> | ||
<div id="dropdown-countries" class="absolute z-10 hidden bg-white divide-y divide-gray-100 rounded-lg shadow w-60 mt-1"> | ||
<ul class="py-2 text-sm text-gray-700"> | ||
<!-- Language option: Arabic --> | ||
<li> | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100"> | ||
<img src="./../assets/images/icon.svg" alt="Arabic" class="w-5 h-5 mr-2"> Arabic | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100 gap-2"> | ||
<img src="./../assets/images/icon.svg" alt="Arabic" class="w-5 h-5"> | ||
<span>Arabic</span> | ||
</button> | ||
</li> | ||
<!-- Language option: Mandarin --> | ||
<li> | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100"> | ||
<img src="./../assets/images/countries/china.svg" alt="Mandarin" class="w-5 h-5 mr-2"> Mandarin | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100 gap-2"> | ||
<img src="./../assets/images/countries/china.svg" alt="Mandarin" class="w-5 h-5"> | ||
<span>Mandarin</span> | ||
</button> | ||
</li> | ||
<!-- Language option: Russian --> | ||
<li> | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100"> | ||
<img src="./../assets/images/countries/russia.svg" alt="Russian" class="w-5 h-5 mr-2"> Russian | ||
<button type="button" class="flex items-center w-full px-4 py-2 hover:bg-gray-100 gap-2"> | ||
<img src="./../assets/images/countries/russia.svg" alt="Russian" class="w-5 h-5"> | ||
<span>Russian</span> | ||
</button> | ||
</li> | ||
</ul> | ||
|
@@ -68,18 +73,21 @@ | |
<!-- Contact information section --> | ||
<ul class="flex gap-2 pt-[3px] pb-0.5"> | ||
<!-- Email contact --> | ||
<li class="text-[#666666] text-[13px]">[email protected] | ||
<li class="text-[#666666] text-[13px]"> | ||
<i class="pl-2 fa-regular text-[#62D0B6] fa-envelope"></i> | ||
<span>[email protected]</span> | ||
</li> | ||
|
||
<!-- Divider --> | ||
<li class="m-1.5 shrink-0 mx-0 h-[10px] border border-[#d6d6d6]"></li> | ||
|
||
<!-- Phone contact --> | ||
<li class="text-[#666666] text-[13px]">+201234567890 | ||
<li class="text-[#666666] text-[13px]"> | ||
<i class="pr-2 fa-solid fa-phone-volume text-[#62D0B6] transform -scale-x-100"></i> | ||
<span>+201234567890 </span> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters