-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmenu.html
50 lines (41 loc) · 1.99 KB
/
menu.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
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.cdnfonts.com/css/vazirmatn" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<title>360 Group</title>
</head>
<body class="bg-[#CB202A] text-white h-screen flex flex-col items-center justify-between">
<div id="close-menu" class="px-4 py-2 bg-red-500 text-white rounded-lg hover:bg-red-600" style="background-color: #CB202A;">
<!-- Header -->
<header class="w-full flex justify-between items-center px-4">
<!-- Back Button -->
<button class="absolute top-4 left-6" onclick="goBack()">
<a href="#">
<img src="assets/svg/Chevron left.svg" alt="" class="ml-2 mt-5 w-7 h-7 hover:cursor-pointer" >
</a>
</button>
</header>
<main class="flex flex-col items-center mt-8 pt-10">
<img class="m-auto w-[250px]" src="assets/svg/360 logo nahaeeeeeee-03 1.svg" alt="">
</main>
<!-- Added mt-8 for margin-top -->
<nav class="flex flex-col items-center pt-8">
<a href="slider.html" class="mb-6 text-xl font-bold hover:cursor-pointer">صفحه اصلی</a>
<a href="group-main-page.html" class="my-6 text-xl font-bold hover:cursor-pointer">گروه ۳۶۰</a>
<a href="#" class="my-6 text-xl font-bold hover:cursor-pointer">خدمات ۳۶۰</a>
<a href="https://360tools.io/auth/login" class="my-6 text-xl font-bold hover:cursor-pointer">ابزار ۳۶۰</a>
<a href="group-job-offers.html" class="my-6 text-xl font-bold hover:cursor-pointer">فرصتهای شغلی</a>
<a href="contact-us.html" class="my-6 text-xl font-bold hover:cursor-pointer">ارتباط با ما</a>
</nav>
<script>
function goBack() {
history.back();
}
</script>
</body>
</html>
<header class="w-full flex justify-between items-center px-4">