-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontend-summary.html
More file actions
440 lines (379 loc) · 16.1 KB
/
frontend-summary.html
File metadata and controls
440 lines (379 loc) · 16.1 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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Developer Roadmap</title>
<style>
:root {
--bg-color: #121212;
--card-bg: #1e1e1e;
--text-color: #ffffff;
--accent-color: #eee313;
--border-color: #333333;
--hover-bg: #2d2d2d;
--section-bg: #252526;
--link-color: #64b5f6;
--beginner-color: #4CAF50;
--intermediate-color: #2196F3;
--advanced-color: #9C27B0;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--bg-color);
color: var(--text-color);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
padding: 20px;
}
.header-container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 20px 40px;
border-bottom: 1px solid var(--border-color);
margin-bottom: 20px;
}
.logo-container {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.nav-links {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 10px;
}
.nav-link {
display: inline-block;
padding: 8px 15px;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--link-color);
text-decoration: none;
font-size: 0.9rem;
transition: background-color 0.3s;
}
.nav-link:hover {
background-color: var(--hover-bg);
}
.main-header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 20px;
}
.back-link {
display: block;
margin: 0 auto 10px;
color: var(--link-color);
text-decoration: none;
font-size: 1rem;
text-align: center;
}
.back-link:hover {
text-decoration: underline;
}
h1 {
color: var(--accent-color);
font-size: 2.5rem;
margin-bottom: 10px;
}
.subtitle {
color: #aaaaaa;
font-size: 1rem;
margin-bottom: 30px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.section {
margin-bottom: 40px;
background-color: var(--section-bg);
border-radius: 8px;
padding: 25px;
border: 1px solid var(--border-color);
border-left: 5px solid;
}
.beginner {
border-left-color: #eee313;
}
.intermediate {
border-left-color: #eee313;
}
.advanced {
border-left-color: #eee313;
}
.section h2 {
color: var(--accent-color);
margin-bottom: 25px;
font-size: 1.8rem;
display: flex;
align-items: center;
gap: 10px;
}
.topic {
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid var(--border-color);
}
.topic h3 {
color: #ECEFF1;
margin-bottom: 10px;
font-size: 1.2rem;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif
}
.topic p {
color: #cccccc;
margin-bottom: 10px;
line-height: 1.7;
}
.resources {
margin-top: 15px;
}
.resource {
color: var(--link-color);
text-decoration: none;
display: block;
margin-bottom: 8px;
padding: 5px 10px;
background-color: rgba(30, 30, 30, 0.7);
border-radius: 4px;
transition: background-color 0.3s;
}
.resource:hover {
background-color: rgba(64, 64, 64, 0.7);
text-decoration: underline;
}
.expand-btn {
background-color: #333333;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
transition: background-color 0.3s;
font-family: inherit;
font-size: 0.95rem;
}
.expand-btn:hover {
background-color: #444444;
}
.resources {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease-out;
}
.resources.expanded {
max-height: 1000px;
}
.level-badge {
display: inline-block;
padding: 3px 10px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: bold;
margin-left: 10px;
}
/* Full Roadmap Link */
.full-roadmap-link {
display: block;
text-align: center;
margin: 40px auto;
padding: 15px 25px;
background-color: var(--card-bg);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--link-color);
text-decoration: none;
font-size: 1.1rem;
max-width: 300px;
transition: background-color 0.3s;
}
.full-roadmap-link:hover {
background-color: var(--hover-bg);
}
@media (max-width: 768px) {
.header-container {
flex-direction: column;
align-items: center;
}
.logo-container {
margin-bottom: 10px;
}
.nav-links {
flex-direction: column;
width: 100%;
}
.nav-link {
text-align: center;
}
.section {
padding: 15px;
}
.full-roadmap-link {
max-width: 100%;
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<div class="main-header">
<a href="index.html" class="back-link">← Back to Main Menu</a>
<h1>Frontend Developer Roadmap</h1>
<p class="subtitle">Complete guide to learning frontend development from beginner to advanced</p>
</div>
<!-- Basic Level -->
<div class="section beginner">
<h2>Basic Level</h2>
<div class="topic">
<h3>HTML</h3>
<p>HTML (HyperText Markup Language) is the standard markup language for documents designed to be displayed in a web browser. It defines the meaning and structure of web content.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://developer.mozilla.org/en-US/docs/Web/HTML" class="resource" target="_blank">MDN HTML Guide</a>
<a href="https://www.w3schools.com/html/" class="resource" target="_blank">W3Schools HTML</a>
</div>
</div>
<div class="topic">
<h3>CSS</h3>
<p>Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in HTML. It controls the layout, colors, fonts, and visual aspects.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS" class="resource" target="_blank">MDN CSS Guide</a>
<a href="https://www.w3schools.com/css/" class="resource" target="_blank">W3Schools CSS</a>
</div>
</div>
<div class="topic">
<h3>JavaScript</h3>
<p>JavaScript is a programming language that enables interactive web pages. It allows you to implement complex features, manipulate DOM, handle events, and make HTTP requests.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" class="resource" target="_blank">MDN JavaScript Guide</a>
<a href="https://www.w3schools.com/js/" class="resource" target="_blank">W3Schools JavaScript</a>
</div>
</div>
<div class="topic">
<h3>Git & GitHub</h3>
<p>Git is a version control system for tracking changes in source code. GitHub is a platform for hosting repositories and collaborating on projects.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://git-scm.com/doc" class="resource" target="_blank">Official Git Documentation</a>
<a href="https://docs.github.com/en" class="resource" target="_blank">GitHub Docs</a>
</div>
</div>
</div>
<!-- Beyond Basic Section -->
<div class="section intermediate">
<h2>Beyond Basic</h2>
<div class="topic">
<h3>Responsive Design</h3>
<p>Designing web pages that adapt to different screen sizes and devices. Involves using media queries, flexible grids, and scalable images.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://developer.mozilla.org/en-US/docs/Learn/CSS/CSS_layout/Responsive_Design" class="resource" target="_blank">MDN Responsive Design</a>
<a href="https://www.w3schools.com/css/css_rwd_intro.asp" class="resource" target="_blank">W3Schools Responsive Design</a>
</div>
</div>
<div class="topic">
<h3>Preprocessors (Sass/SCSS)</h3>
<p>Tools that extend CSS with features like variables, mixins, and functions, making stylesheets more maintainable and scalable.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://sass-lang.com/guide" class="resource" target="_blank">Sass Official Guide</a>
<a href="https://www.w3schools.com/sass/" class="resource" target="_blank">W3Schools Sass</a>
</div>
</div>
<div class="topic">
<h3>Build Tools (Webpack, Vite)</h3>
<p>Tools that optimize your project, bundle files, minify code, and transform modern JavaScript for browser compatibility.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://webpack.js.org/guides/" class="resource" target="_blank">Webpack Guides</a>
<a href="https://vitejs.dev/guide/" class="resource" target="_blank">Vite Guide</a>
</div>
</div>
<div class="topic">
<h3>Testing (Jest, Cypress)</h3>
<p>Writing automated tests to ensure your code works as expected. Includes unit tests, integration tests, and end-to-end tests.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://jestjs.io/docs/getting-started" class="resource" target="_blank">Jest Documentation</a>
<a href="https://docs.cypress.io/guides/getting-started/installing-cypress" class="resource" target="_blank">Cypress Guide</a>
</div>
</div>
</div>
<!-- Advanced Level -->
<div class="section advanced">
<h2>Advanced Level</h2>
<div class="topic">
<h3>Modern Frameworks (React, Vue, Angular)</h3>
<p>JavaScript frameworks for building dynamic, scalable web applications. They provide features like component architecture, state management, and routing.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://reactjs.org/docs/getting-started.html" class="resource" target="_blank">React Documentation</a>
<a href="https://vuejs.org/guide/introduction.html" class="resource" target="_blank">Vue Guide</a>
<a href="https://angular.io/start" class="resource" target="_blank">Angular Guide</a>
</div>
</div>
<div class="topic">
<h3>State Management (Redux, Zustand)</h3>
<p>Patterns and tools for managing and updating application state in complex JavaScript applications, especially in React/Vue/Angular.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://redux.js.org/introduction/getting-started" class="resource" target="_blank">Redux Documentation</a>
<a href="https://docs.pmnd.rs/zustand" class="resource" target="_blank">Zustand Guide</a>
</div>
</div>
<div class="topic">
<h3>Performance Optimization</h3>
<p>Techniques to improve loading speed and runtime performance, such as lazy loading, code splitting, image optimization, etc.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://web.dev/fast/" class="resource" target="_blank">Web.dev Performance</a>
<a href="https://developer.mozilla.org/en-US/docs/Web/Performance" class="resource" target="_blank">MDN Performance</a>
</div>
</div>
<div class="topic">
<h3>Web Security (CORS, XSS, etc.)</h3>
<p>Principles and techniques to protect your application from common web vulnerabilities and attacks.</p>
<button class="expand-btn">Show Resources</button>
<div class="resources">
<a href="https://developer.mozilla.org/en-US/docs/Web/Security" class="resource" target="_blank">MDN Web Security</a>
<a href="https://owasp.org/www-project-top-ten/" class="resource" target="_blank">OWASP Top 10</a>
</div>
</div>
</div>
</div>
<!-- Full Roadmap Link -->
<a href="frontend.html" class="full-roadmap-link" target="_blank">Full Roadmap Version</a>
<script>
// Toggle resource visibility
document.querySelectorAll('.expand-btn').forEach(button => {
button.addEventListener('click', () => {
const resources = button.nextElementSibling;
resources.classList.toggle('expanded');
if (resources.classList.contains('expanded')) {
button.textContent = 'Hide Resources';
} else {
button.textContent = 'Show Resources';
}
});
});
</script>
</body>
</html>