-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (62 loc) · 3.3 KB
/
Copy pathindex.html
File metadata and controls
71 lines (62 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Interactive roadmap for learning front-end development with a focus on n8n custom node creation" />
<meta name="keywords" content="n8n, frontend, development, roadmap, learning" />
<meta name="author" content="n8n Learning Roadmap" />
<link rel="icon" href="img/favicon.svg" type="image/svg+xml" />
<title>Front‑End Learning Roadmap</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
<!-- Bootstrap 5 (CSS) -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" />
<!-- Font Awesome Icons -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet" />
<!-- DataTables (CSS) – if CDN unreachable we still fall back gracefully -->
<link href="https://cdn.datatables.net/v/bs5/dt-2.0.0/datatables.min.css" rel="stylesheet" onerror="this.disabled=true;" />
<!-- Custom CSS -->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- Hero / Header -->
<header class="hero text-center">
<div class="container">
<h1 class="display-5 fw-semibold">Front‑End Self‑Study Roadmap</h1>
<p class="lead mb-4">Track your progress and stay focused with an interactive, shareable checklist.</p>
<div class="d-flex justify-content-center gap-2">
<a href="#roadmap" class="btn btn-light btn-lg fw-semibold shadow-sm">Jump to Table <i class="fa fa-arrow-down ms-2"></i></a>
<a href="comments.html" class="btn btn-outline-light btn-lg fw-semibold">Join Discussion <i class="fa fa-comments ms-2"></i></a>
</div>
</div>
</header>
<!-- Roadmap Table -->
<section id="roadmap" class="datatable-container container bg-white shadow p-4 rounded-4">
<div class="table-responsive">
<table id="learningTable" class="table table-striped table-hover w-100">
<thead class="table-dark">
<tr>
<th>Course</th>
<th>Target Time</th>
<th>Topics to Skip</th>
<th>Optional?</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</section>
<footer class="py-5 text-center small text-muted">
<div class="container">
Made with <a id="windsurf-referral" href="https://windsurf.com/refer?referral_code=nxaj37gi6b4dw008" target="_blank"><img src="img/windsurf-logo.svg" alt="Windsurf Logo" width="24" height="24"></a> using <a href="https://getbootstrap.com/" target="_blank">Bootstrap 5</a>, <a href="https://datatables.net/" target="_blank">DataTables</a> & <a href="https://fontawesome.com/" target="_blank">Font Awesome</a>.
</div>
</footer>
<!-- JS Dependencies (deferred) -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" defer></script>
<script src="https://cdn.datatables.net/v/bs5/dt-2.0.0/datatables.min.js" defer onerror="console.warn('DataTables CDN blocked – falling back to vanilla table');"></script>
<!-- App logic -->
<script src="js/main.js" defer></script>
</body>
</html>