-
Notifications
You must be signed in to change notification settings - Fork 0
/
82-menu.html
55 lines (50 loc) · 1.46 KB
/
82-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
51
52
53
54
55
<html>
<head>
<link href="https://cdn.jsdelivr.net/gh/rastikerdar/[email protected]/Vazirmatn-font-face.css" rel="stylesheet" type="text/css" />
<style>
*{
font-family: vazirmatn;
}
body{
direction: rtl;
}
/* Style the navbar with a dark background, white text and some padding */
.navbar {
background-color: #333333;
color: white;
padding: 10px;
position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */
width: 100%; /* Full width */
}
/* Style the links inside the navbar with a lighter color */
.navbar a {
color: #cccccc;
text-decoration: none;
margin: 10px;
}
/* Change the color of links on hover */
.navbar a:hover {
color: #ffffff;
}
/* Add a margin to the main content to avoid content overlay */
.main {
margin-top: 50px;
}
</style>
</head>
<body>
<!-- Add the navbar element with some links inside -->
<div class="navbar">
<a href="index.html">خانه</a>
<a href="about.html">درباره ما</a>
<a href="services.html">خدمات</a>
<a href="contact.html">رضایت مشتریان</a>
<a href="contact.html">ارتباط با ما </a>
<a href="contact.html"> نشانی</a>
</div>
<!-- Add some main content -->
<div class="main">
</div>
</body>
</html>