-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabouAS.html
113 lines (107 loc) · 3.33 KB
/
abouAS.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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
background: linear-gradient(135deg, #4a00e0, #8e2de2);
color: white;
}
header {
background-color: rgba(0, 0, 0, 0.7);
padding: 10px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background: #333;
padding: 10px;
}
nav a {
color: white;
padding: 14px 20px;
text-decoration: none;
text-align: center;
font-size: 1.2em; /* تكبير حجم الخط */
transition: color 0.3s, text-shadow 0.3s; /* إضافة تأثير عند المرور */
}
nav a:hover {
color: #ffafbd; /* تغيير لون النص عند المرور */
text-shadow: 0 0 5px #ffc3a0, 0 0 10px #ffafbd; /* إضافة ظل للنص */
}
section {
padding: 20px;
max-width: 800px;
margin: auto;
background: rgba(255, 255, 255, 0.1); /* خلفية شفافة قليلاً */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
section h2 {
font-size: 3em;
font-weight: 700;
background: linear-gradient(90deg, #00c6ff, #0072ff); /* تأثير اللون المميز */
background-clip: text;
-webkit-background-clip: text;
color: transparent;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
animation: glow 2s ease-in-out infinite alternate;
}
section p {
font-size: 1.1em;
margin-bottom: 10px;
}
footer {
text-align: center;
padding: 15px 0;
background: rgba(0, 0, 0, 0.7);
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
@keyframes glow {
from {
text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.3);
}
to {
text-shadow: 2px 2px 20px rgba(255, 255, 255, 0.7);
}
}
/* Responsive */
@media (max-width: 600px) {
nav {
flex-direction: column;
}
nav a {
padding: 8px;
margin: 5px 0;
}
}
</style>
</head>
<body>
<header>
<h1>About Us</h1>
</header>
<nav>
<a href="home.html">🏠 Home</a>
<a href="abouAS.html">ℹ️ About Us</a>
<a href="course.html">📚 Courses</a>
<a href="OurSchool.html">🏫 Our School</a>
<a href="contact.html">📞 Contact</a>
</nav>
<section>
<h2>About Our Website</h2>
<p> مرحبا بكم في موقعنا يقدم كورسات مجانية شاملة الذكاء الاصطناعي و برمجة المواقع</p>
</section>
<footer>
<p>© 2024 Our Website. All rights reserved.</p>
</footer>
</body>
</html>