-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoals.html
More file actions
106 lines (97 loc) · 2.06 KB
/
Copy pathgoals.html
File metadata and controls
106 lines (97 loc) · 2.06 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> اهداف </title>
</head>
<style>
.group-section,
.single-video {
margin: 50px 0;
text-align: center;
}
/* تنسيق لجعل الفيديو متجاوب مع جميع الشاشات */
.video-container {
position: relative;
padding-bottom: 56.25%; /* نسبة 16:9 */
height: 0;
overflow: hidden;
max-width: 600px; /* يمكنكِ تكبير أو تصغير العرض من هنا */
margin: 20px auto;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.videos-row {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
iframe {
width: 100%;
max-width: 400px;
height: 250px;
border-radius: 12px;
}
h2 {
margin-bottom: 25px;
color: #0a4d8c;
font-size: 24px;
}
body{
background-image:url("805.jpg");
text-align: center;
color: wheat;
.videos {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.videos iframe {
width: 100%;
max-width: 500px;
height: 280px;
border-radius: 10px;
}
}
a{
background-color:lightblue;
}</style>
<body>
<header>
<hr>
<h2>أهداف التحول الرقمي</h2>
</header>
<ul>
<li>تسهيل الخدمات الحكومية</li>
<li>تقليل التكدس في المصالح</li>
<li>توفير الوقت والجهد</li>
<li>دعم رؤية مصر 2030</li>
</ul>
<img src="55.jpg" alt="5" height="300px" width="300px">
<hr>
<section class="single-video">
<h2>استراتيجيات التحول الرقمي</h2>
<iframe
src="https://www.youtube.com/embed/3nRgyNXg9Cw"
frameborder="0"
allowfullscreen>
</iframe>
</section>
<hr>
<a href="Homepage.html">العودة للصفحة الرئيسية</a>
<footer>
<p>تم بإنشاء هذا المشروع بواسطة طالب مبتكر - فبراير 2026</p>
</footer>
</body>
</html>