Skip to content

Commit 946be81

Browse files
Update arabic.html
1 parent be23961 commit 946be81

File tree

1 file changed

+93
-0
lines changed

1 file changed

+93
-0
lines changed

arabic.html

+93
Original file line numberDiff line numberDiff line change
@@ -1 +1,94 @@
1+
<!DOCTYPE html>
2+
<html lang="ar">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>فكرة! خدمات تقنية اونلاين</title>
7+
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap" rel="stylesheet">
8+
<style>
9+
body {
10+
display: flex;
11+
justify-content: center;
12+
align-items: center;
13+
height: 100vh;
14+
margin: 0;
15+
font-family: 'Cairo', sans-serif;
16+
flex-direction: column;
17+
background: url('media/back.webp') center center no-repeat;
18+
background-size: 100% 100%;
19+
position: relative;
20+
overflow: hidden;
21+
}
122

23+
.icon img {
24+
width: 80%; /* Adjust image size */
25+
height: auto; /* Keep aspect ratio */
26+
}
27+
28+
#languageSelect {
29+
font-size: 16px;
30+
padding: 5px;
31+
background-color: transparent; /* Transparent background */
32+
color: white; /* White text */
33+
text-shadow: 0 0 5px rgba(255, 255, 255, 0.8); /* Starry effect */
34+
border: 1px solid; /* Thin border */
35+
border-image: linear-gradient(45deg, #d4af37, #f8f8ff, #d4af37) 1; /* Shiny gradient border */
36+
border-radius: 5px;
37+
outline: none; /* Remove default outline */
38+
appearance: none; /* Hide default dropdown styling */
39+
cursor: pointer;
40+
}
41+
42+
#languageSelect:focus {
43+
box-shadow: 0 0 8px rgba(212, 175, 55, 0.8); /* Add glow effect when focused */
44+
}
45+
#languageSelect option {
46+
color: black;
47+
background-color: transparent; /* Keep background transparent */
48+
}
49+
50+
.label-container {
51+
display: flex;
52+
flex-direction: column;
53+
gap: 10px;
54+
margin-top: 60px;
55+
}
56+
57+
.label {
58+
font-size: 24px;
59+
direction: rtl;
60+
padding: 10px 20px;
61+
border: 1px solid black;
62+
border-radius: 5px;
63+
cursor: pointer;
64+
text-align: center;
65+
background-color: #D6B77E; /* Darker sand color */
66+
}
67+
68+
.label:hover {
69+
background-color: #e0e0e0;
70+
}
71+
72+
/* Style specifically for the "Contact Us" label */
73+
.label:last-child {
74+
background-color: #8c6e4f; /* Even darker sand color */
75+
}
76+
</style>
77+
</head>
78+
<body>
79+
<div style="position: absolute; top: 10px; left: 10px;">
80+
<img src="media/Language.png" alt="Language" style="height: 40px; margin-left: 2px;">
81+
<select id="languageSelect" style="margin-left: 10px; position: relative; top: -12px;">
82+
<option value="ar">العربية</option>
83+
<option value="en">English</option>
84+
</select>
85+
</div>
86+
<div class="label-container">
87+
<div class="label">التطبيقات</div>
88+
<div class="label">خدماتنا</div>
89+
<div class="label">مقالات</div>
90+
<div class="label">تعرف علينا</div>
91+
<div class="label">تواصل معنا</div>
92+
</div>
93+
</body>
94+
</html>

0 commit comments

Comments
 (0)