forked from mjahmad1/dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arab17.html
45 lines (45 loc) · 1.32 KB
/
arab17.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
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>أهلا وسهلا بك في موقعي</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Amiri&family=Reem+Kufi+Ink&family=Reem+Kufi+Fun&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ruwudu&display=swap'); /* Importing Ruwudu font */
body {
margin: 0;
padding: 0;
font-family: 'Amiri', serif; /* Default font for the body */
background-color: white;
color: black;
direction: rtl; /* Right-to-left layout */
}
/* Existing styles... */
/* New Section Styles */
.additional-section {
background-color: white; /* White background */
color: black; /* Black text */
text-align: center; /* Centered text */
font-family: 'Ruwudu', sans-serif; /* Ruwudu font */
padding: 20px; /* Padding around the text */
margin-top: 20px; /* Space above the new section */
}
/* Link styles */
a {
color: #ff4500; /* Orange color for the link */
text-decoration: none; /* No underline for the link */
}
@media (max-width: 768px) {
/* Responsive styles... */
}
</style>
</head>
<body>
<!-- Existing content... -->
<!-- New Section -->
<div class="additional-section">
<p>لمعرفة المزيد عني وعن عملي، انقر <a href="arab12.html">هنا</a></p>
</div>
</body>
</html>