dev-maram
1 hour ago in Plain Text
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مشروع مادة ST - مرام حسام الدين</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
color: #333;
}
header {
background-color: #0056b3;
color: white;
padding: 30px 0;
text-align: center;
border-bottom: 5px solid #003d7a;
}
nav {
background-color: #ffffff;
text-align: center;
padding: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
nav a {
color: #0056b3;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
.container {
max-width: 900px;
margin: 20px auto;
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
h2 {
color: #0056b3;
border-right: 4px solid #0056b3;
padding-right: 10px;
margin-top: 30px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table, th, td {
border: 1px solid #ddd;
}
th {
background-color: #0056b3;
color: white;
padding: 12px;
}
td {
padding: 10px;
text-align: center;
}
footer {
background-color: #0056b3;
color: white;
text-align: center;
padding: 15px;
margin-top: 50px;
}
.highlight {
color: #0056b3;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<h1>مشروع مادة ST</h1>
<p>تصميم وتطوير الطالبة: مرام حسام الدين زكريا</p>
</header>
<nav>
<a href="#personal">البيانات الشخصية</a>
<a href="#academic">البيانات الأكاديمية</a>
<a href="#course">عن المادة</a>
</nav>
<div class="container">
<section id="personal">
<h2>البيانات الشخصية</h2>
<p><b>الاسم الكامل:</b> مرام حسام الدين زكريا</p>
<p><b>الفرقة:</b> الفرقة الأولى</p>
<p><b>الاهتمامات:</b> تعلم أساسيات البرمجة وتكنولوجيا المعلومات لعام 2025.</p>
</section>
<section id="academic">
<h2>البيانات الأكاديمية</h2>
<table>
<tr>
<th>المؤسسة التعليمية</th>
<th>الجامعة</th>
<th>المادة</th>
</tr>
<tr>
<td>أكاديمية السادات</td>
<td>جامعة الإسكندرية</td>
<td>مادة ST</td>
</tr>
</table>
</section>
<section id="course">
<h2>عن مشروع المادة</h2>
<p>هذا الموقع هو تطبيق عملي لما تم دراسته في مادة <span class="highlight">ST</span>، حيث يهدف المشروع إلى:</p>
<ul>
<li>فهم أساسيات لغة HTML في بناء هيكل الصفحات.</li>
<li>استخدام CSS لتنسيق الألوان وتوزيع العناصر بشكل احترافي.</li>
<li>ربط البيانات الأكاديمية في قالب ويب منظم.</li>
</ul>
</section>
</div>
<footer>
<p>تم الإنشاء بواسطة مرام حسام الدين - 2025 &copy;</p>
</footer>
</body>
</html>