forked from mjahmad1/dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arab12.html
113 lines (101 loc) · 3.35 KB
/
arab12.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!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');
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 */
}
.header {
background-color: black;
color: white;
text-align: center;
padding: 20px;
}
.header h1 {
font-family: 'Reem Kufi Ink', sans-serif; /* Specific font for the title */
margin: 0;
font-size: 2.5em;
}
.header p {
font-family: 'Amiri', serif; /* Specific font for the subtitle */
margin: 0;
font-size: 1.5em;
white-space: nowrap; /* Ensures the subtitle is on one line */
overflow: hidden;
text-overflow: ellipsis;
}
.welcome-section {
width: 100%;
height: auto;
text-align: center;
}
.welcome-section img {
max-width: 100%;
height: auto;
}
.profile-section {
padding: 20px 30px; /* Padding around the text */
}
.profile-section p {
margin: 20px 0; /* Margin between paragraphs */
font-family: 'Reem Kufi Ink', sans-serif; /* Specific font for the profile section */
position: relative; /* Added for emoji alignment */
padding-right: 40px; /* Added space for emoji */
}
/* Emoji styles */
.emoji {
position: absolute; /* Changed to absolute */
right: 10px; /* Aligns emoji to the right */
top: 0; /* Aligns emoji to the top of the paragraph */
width: 24px; /* Sets the emoji image width */
height: auto; /* Maintains the aspect ratio of the emoji image */
}
/* New Section Styles */
.new-section {
background-color: white; /* White background */
color: black; /* Black text */
text-align: center; /* Centered text */
font-family: 'Reem Kufi Fun', sans-serif; /* 'Reem Kufi Fun' font */
padding: 20px; /* Padding around the text */
margin-top: 20px; /* Space above the new section */
}
@media (max-width: 768px) {
.header h1 {
font-size: 2em;
}
.header p {
font-size: 1.2em;
}
}
</style>
</head>
<body>
<div class="header">
<h1>أهلا وسهلا بك في موقعي</h1>
<p>متطلعا إلى جيل لامع يجمع بين المعرفة والإيمان</p>
</div>
<div class="welcome-section">
<img src="mjsteker.jpg" alt="Welcome Image">
</div>
<div class="profile-section">
<p><img src="emojieesptal1.png" class="emoji" alt="emoji">طالب متحمس ومروج للتقدم التكنولوجي والتعليم في بنغلاديش،</p>
<p><img src="emojircccs2.png" class="emoji" alt="emoji">لدي خبرة عميقة في ترميز حلول الحوسبة السحابية،</p>
<p><img src="emojirwibw1.png" class="emoji" alt="emoji">أعمل على تحسين مهاراتي و بناء قوة عاملة ماهرة,</p>
<p><img src="emojirpcid4.png" class="emoji" alt="emoji">️كمطور في منتدى مطوري شركة بلاد المتحدة "لندن"، يعكس دوري مهاراتي المهنية والتزامي بالابتكار,</p>
<p><img src="emojicpsetmlda4.png" class="emoji" alt="emoji">أمارس باستمرار الابتكار وتعزيز المهارات من خلال تكنولوجيا الذكاء الاصطناعي وتعلم الآلة وتحليل البيانات،</p>
</div>
<!-- New Section -->
<div class="new-section">
<p>نعم،</p>
</div>
</body>
</html>