-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
209 lines (167 loc) · 5.12 KB
/
about.html
File metadata and controls
209 lines (167 loc) · 5.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About This project</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
<style>
/* ---------------- GENERAL ---------------- */
body {
margin: 0;
padding: 0;
font-family: "Arial", sans-serif;
background: #1c1c1c; /* نفس الخلفية اللي في الصورة */
color: #dcdcdc; /* الكتابة الرمادي الفاتح */
line-height: 1.7;
}
/* ---------------- HEADER ---------------- */
header {
background: #111;
color: #f7d400; /* أصفر */
padding: 40px 20px;
text-align: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
header h1 {
margin: 0;
font-size: 36px;
letter-spacing: 1px;
animation: fadeDown 1s ease;
}
/* ---------------- SECTION BOXES ---------------- */
section {
background: #181818;
width: 85%;
max-width: 900px;
margin: 25px auto;
padding: 25px;
border-radius: 12px;
box-shadow: 0 0 12px rgba(0,0,0,0.4);
border: 1px solid #252525;
transition: 0.3s ease;
animation: fadeUp 0.8s ease;
}
section:hover {
transform: translateY(-5px);
box-shadow: 0 0 18px rgba(255, 215, 0, 0.25); /* اصفر خفيف */
}
/* ---------------- HEADERS ---------------- */
h2 {
color: #ffd700; /* أصفر */
border-left: 5px solid #ffd700;
padding-left: 10px;
margin-bottom: 15px;
}
/* ---------------- LISTS ---------------- */
ul {
margin-left: 20px;
}
ul li {
margin: 8px 0;
color: #cfcfcf;
}
/* ---------------- PARAGRAPHS ---------------- */
p {
color: #d0d0d0;
}
/* ---------------- FOOTER ---------------- */
footer {
text-align: center;
padding: 20px;
background: #111;
color: #999;
margin-top: 40px;
font-size: 14px;
letter-spacing: 0.5px;
border-top: 1px solid #222;
}
/* ---------------- ANIMATIONS ---------------- */
@keyframes fadeUp {
0% {
opacity: 0;
transform: translateY(25px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeDown {
0% {
opacity: 0;
transform: translateY(-20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<nav class="navbar">
<div class="logo">DevRoadmaps</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html" target="_blank">Contact Us</a></li>
<li><a href="about.html" target="_blank">About</a></li>
<li><a href="login.html" target="_blank">Login</a></li>
<li><a href="signup.html" target="_blank">Signup</a></li>
</ul>
</nav>
<header>
<h1>About This Project</h1>
</header>
<section>
<h2>Introduction</h2>
<p>
This website was created to help beginners and aspiring tech learners find a clear and structured roadmap
for different technology fields such as Cyber Security, Artificial Intelligence, and Computer Science.
Our goal is to provide a simple, well-organized, and practical guide that makes learning easier, faster,
and more enjoyable.
</p>
</section>
<section>
<h2>Why This Project Exists?</h2>
<ul>
<li>To give students a clear path instead of searching everywhere.</li>
<li>To make learning technology easier with trusted resources.</li>
<li>To provide one place that collects roadmaps, tips, tools, and links.</li>
<li>To help beginners know where to start and what to learn next.</li>
</ul>
</section>
<section>
<h2>Who Is This For?</h2>
<ul>
<li>Students in their first year of university</li>
<li>People switching careers</li>
<li>Anyone who wants to start learning Cyber Security / AI / CS</li>
<li>Anyone who wants a structured, step-by-step plan</li>
</ul>
</section>
<section>
<h2>What You Will Find Here</h2>
<ul>
<li>Full learning roadmaps</li>
<li>Organized stages</li>
<li>Real resources and useful links</li>
<li>Explanations of each track</li>
<li>Tips to start your tech career</li>
<li>Guidance on what to learn next</li>
</ul>
</section>
<section>
<h2>What You Will Find Here</h2>
<ul>
<li>Full learning roadmaps</li>
<li>Organized stages</li>
<li>Real resources and useful links</li>
<li>Explanations of each track</li>
<li>Tips to start your tech career</li>
<li>Guidance on what to learn next</li>
</ul>
</section>
</body>
</html>