-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
234 lines (209 loc) · 8.52 KB
/
index.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
<!DOCTYPE html>
<html lang="ar">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Cairo:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<title>إسماعيل الساعدي | ملف شخصي</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
:root {
--background-color: #1c1c1c;
--text-color: #fff;
--header-background: #333;
--card-background: #2b2b2b;
--border-color: #333;
--link-hover-color: #f39c12;
}
.light-mode {
--background-color: #f0f0f0;
--text-color: #1c1c1c;
--header-background: #fff;
--card-background: #fff;
--border-color: #ddd;
--link-hover-color: #007bff;
}
* {
font-family: 'Cairo', sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: var(--background-color);
color: var(--text-color);
opacity: 0;
animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
to { opacity: 1; }
}
header {
background: var(--header-background);
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}
nav a {
text-decoration: none;
color: var(--text-color);
margin: 0 15px;
transition: color 0.3s ease;
}
nav a:hover {
color: var(--link-hover-color);
}
h1, h2 {
color: var(--link-hover-color);
}
img {
border: 5px solid var(--link-hover-color);
border-radius: 50%;
width: 200px;
height: 200px;
object-fit: cover;
transition: transform 0.3s ease-in-out;
}
img:hover {
transform: scale(1.05);
}
.card {
background: var(--card-background);
border-radius: 10px;
padding: 20px;
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: translateY(-10px);
}
.icon {
font-size: 3rem;
color: var(--link-hover-color);
transition: transform 0.3s ease-in-out;
}
footer {
background: var(--background-color);
padding: 20px;
text-align: center;
border-top: 1px solid var(--border-color);
}
footer p {
color: var(--text-color);
margin: 0;
}
</style>
</head>
<body>
<header class="flex sm:flex-col items-center py-5 fixed top-0 w-full z-10 " >
<div class="w-full flex justify-center ">
<nav class="flex justify-around w-10/12 md:w-8/12 max-w-screen-lg text-lg ">
<a href="#main">الرئيسية</a>
<a href="#skillz">المهارات</a>
<a href="#contactme">تواصل</a>
</nav>
<button id="theme-toggle" class="ml-4 text-xl">
<i id="theme-icon" class="fa-solid fa-sun"></i>
</button>
</div>
</header>
<main class="grid md:grid-cols-2 gap-5 p-5 m-auto mt-44 max-w-screen-lg text-center md:text-right " dir="rtl" id="main">
<div>
<h1 class="text-3xl font-bold mb-1">إسماعيل الساعدي</h1>
<p class="text-lg ">طالب في كلية التقنية الإلكترونية طرابلس, قسم الحاسب الآلي, خبرة 10 سنوات في التعامل مع الكمبيوتر, متوسط في البرمجة.</p>
</div>
<div class="flex justify-center mt-10">
<img src="images/images.jpeg" alt="إسماعيل الساعدي">
</div>
</main>
<section class="flex flex-col items-center mt-20 m-10" id="skillz">
<h2 class="text-3xl font-bold mb-10">المهارات</h2>
<div class="grid md:grid-cols-2 gap-8 mt-10">
<div class="card">
<h3 class="text-2xl font-bold mb-4">Backend Development</h3>
<div class="grid grid-cols-2 gap-4">
<div class="flex flex-col items-center">
<i class="fa-brands fa-java icon"></i>
<p>Java</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-solid fa-database icon"></i>
<p>SQL Server</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-git icon"></i>
<p>Git</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-python icon"></i>
<p>Python</p>
</div>
</div>
</div>
<div class="card">
<h3 class="text-2xl font-bold mb-4">Frontend Development</h3>
<div class="grid grid-cols-3 gap-4">
<div class="flex flex-col items-center">
<i class="fa-brands fa-css3-alt icon"></i>
<p>CSS</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-html5 icon"></i>
<p>HTML</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-js icon"></i>
<p>JavaScript</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-solid fa-wand-magic-sparkles icon"></i>
<p>Tailwind CSS</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-sass icon"></i>
<p>SCSS</p>
</div>
<div class="flex flex-col items-center">
<i class="fa-brands fa-figma icon"></i>
<p>Figma</p>
</div>
</div>
</div>
</div>
</section>
<section class="flex flex-col items-center mt-20 p-5" id="contactme">
<h2 class="text-3xl font-bold mb-10">تواصل معي</h2>
<div class="flex flex-col md:flex-row items-center justify-around gap-4 mt-10 w-full max-w-screen-md p-4 border border-gray-300 rounded-lg">
<div class="flex items-center gap-2">
<i class="fa-solid fa-envelope text-xl icon"></i>
<p>[email protected]</p>
</div>
<div class="flex items-center gap-2 mt-4 md:mt-0">
<i class="fa-brands fa-telegram text-xl icon"></i>
<a href="https://t.me/trapped133" target="_blank">Telegram: t.me/trapped133</a>
</div>
<div class="flex items-center gap-2 mt-4 md:mt-0">
<i class="fa-brands fa-facebook text-xl icon"></i>
<a href="https://www.facebook.com/trappedjr" target="_blank">Ismael Saadi</a>
</div>
</div>
</section>
<footer>
<p>© 2024 إسماعيل الساعدي. جميع الحقوق محفوظة.</p>
</footer>
<script>
const themeToggle = document.getElementById('theme-toggle');
const themeIcon = document.getElementById('theme-icon');
themeToggle.addEventListener('click', () => {
document.body.classList.toggle('light-mode');
if (document.body.classList.contains('light-mode')) {
themeIcon.classList.remove('fa-sun');
themeIcon.classList.add('fa-moon');
} else {
themeIcon.classList.remove('fa-moon');
themeIcon.classList.add('fa-sun');
}
});
</script>
</body>
</html>