2026-03-08 20:02
Diff
Pertemuan
Tanggal
Learning Journey
Topic
<!doctype html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AI Bootcamp Syllabus - Ruangguru</title>
<meta name="description"
content="Silabus lengkap AI Engineering Bootcamp by Ruangguru. Program intensif untuk karir AI Engineer profesional." />
<!-- CSS -->
<style>@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
--color-primary: #0f6ff2;
--color-secondary: #0dc7f1;
--color-accent-light: #ecf7ff;
--color-text-dark: #1a1a1a;
--color-text-medium: #1a1a1a;
--color-text-light: #1a1a1a;
--color-white: #ffffff;
--color-background-light: #f9fcff;
--color-border: #dde1e6;
}
/* Base Styles - Mobile First */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #f8fafb;
padding: 20px 10px;
color: var(--color-text-dark);
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
background: var(--color-white);
border-radius: 16px;
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
overflow: hidden;
border: 1px solid #f0f3f5;
}
.header {
padding: 32px 24px 24px;
background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
color: #1a1a1a;
border-bottom: 1px solid #e0f0ff;
}
.header h1 {
font-size: 1.5em;
margin-bottom: 8px;
font-weight: 700;
letter-spacing: -0.5px;
color: #1a1a1a;
}
.header p {
font-size: 0.95em;
opacity: 0.7;
font-weight: 400;
color: #1a1a1a;
}
.content-wrapper {
padding: 24px 20px;
}
.tabs {
display: flex;
flex-direction: column;
gap: 4px;
margin-bottom: 32px;
background: transparent;
padding: 0;
border-radius: 0;
border-bottom: 2px solid #f0f3f5;
}
.tab {
padding: 12px 16px;
background: transparent;
border: none;
border-bottom: 3px solid transparent;
cursor: pointer;
font-size: 0.9em;
font-weight: 600;
color: #1a1a1a;
opacity: 0.4;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
margin-bottom: -2px;
text-align: center;
}
.tab:hover {
opacity: 0.7;
border-bottom-color: rgba(15, 111, 242, 0.3);
}
.tab.active {
color: #1a1a1a;
opacity: 1;
background: transparent;
box-shadow: none;
border-bottom-color: var(--color-primary);
}
.tab-content {
display: none;
animation: fadeIn 0.4s ease-in-out;
}
.tab-content.active {
display: block;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.search-box {
margin-bottom: 28px;
}
.search-input {
width: 100%;
padding: 12px 16px 12px 44px;
font-size: 0.95em;
border: 1px solid #e8ebed;
border-radius: 10px;
background: #fafbfc
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23939ba5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cpath d='m21 21-4.35-4.35'%3E%3C/path%3E%3C/svg%3E")
no-repeat 12px center;
font-family: inherit;
transition: all 0.3s ease;
}
.search-input:focus {
outline: none;
border-color: #c5d9f2;
background-color: var(--color-white);
box-shadow: 0 0 0 3px rgba(15, 111, 242, 0.04);
}
.search-input::placeholder {
color: #1a1a1a;
opacity: 0.4;
}
table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: var(--color-white);
border-radius: 10px;
overflow: hidden;
border: 1px solid #f5f7f9;
font-size: 0.85em;
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
}
th {
background: #fafbfc;
padding: 12px 10px;
text-align: left;
font-weight: 700;
font-size: 0.85em;
color: #1a1a1a;
opacity: 0.6;
text-transform: uppercase;
letter-spacing: 0.8px;
border-bottom: 2px solid #dde1e6;
border-right: 1px solid #dde1e6;
min-width: 120px;
}
th:last-child {
border-right: none;
}
th:first-child {
min-width: 80px;
position: sticky;
left: 0;
background: #fafbfc;
z-index: 1;
}
td {
padding: 12px 10px;
border-bottom: 1px solid #dde1e6;
border-right: 1px solid #dde1e6;
font-size: 0.95em;
vertical-align: middle;
color: #1a1a1a;
min-width: 120px;
}
td:last-child {
border-right: none;
}
td:first-child {
min-width: 80px;
position: sticky;
left: 0;
background: inherit;
z-index: 1;
}
td[rowspan] {
background: #fafbfc;
font-weight: 600;
color: #1a1a1a;
}
tr:last-child td {
border-bottom: none;
}
tr {
transition: background-color 0.2s ease;
}
tr:hover {
background: #fafbfc;
}
.week-cell {
font-weight: 700;
color: #1a1a1a;
font-size: 1em;
}
.no-results {
text-align: center;
padding: 80px 20px;
color: #1a1a1a;
opacity: 0.4;
font-size: 1em;
}
.no-results::before {
content: '🔍';
display: block;
font-size: 3em;
margin-bottom: 16px;
opacity: 0.5;
}
/* Tablet and Above - min-width approach */
@media (min-width: 481px) {
.header h1 {
font-size: 1.75em;
}
.header p {
font-size: 1em;
}
th,
td {
font-size: 0.9em;
padding: 14px 12px;
}
}
@media (min-width: 769px) {
body {
padding: 60px 20px;
}
.header {
padding: 48px 48px 32px;
}
.header h1 {
font-size: 2.5em;
}
.header p {
font-size: 1.1em;
}
.content-wrapper {
padding: 40px 48px 48px;
}
.tabs {
flex-direction: row;
gap: 12px;
}
.tab {
padding: 14px 28px;
font-size: 0.95em;
text-align: left;
}
.search-input {
padding: 14px 20px 14px 48px;
background-position: 16px center;
}
table {
font-size: 1em;
display: table;
}
th,
td {
padding: 18px 20px;
}
th:first-child,
td:first-child {
position: static;
min-width: 100px;
}
.week-cell {
min-width: 100px;
}
}
</style>
<!-- Tracker -->
<script src="../js/init.js"></script>
<script type="module" crossorigin src="https://cdn-web-2.ruangguru.com/landing-page-web/public/staticpages/www.ruangguru.com/rea/silabus/assets/index-B_KU37rc.js"></script>
</head>
<body>
<div class="container">
<div class="header">
<h1>AI Bootcamp Syllabus</h1>
<p>Comprehensive Learning Journey</p>
</div>
<div class="content-wrapper">
<div class="tabs">
<button class="tab active" data-tab="engineering">AI Engineering</button>
</div>
<!-- AI Engineering Tab -->
<div id="engineering-content" class="tab-content active">
<div class="search-box">
<input type="text" class="search-input" id="searchEngineering" placeholder="Search topics..." />
</div>
<table id="engineeringTable">
<thead>
<tr>
<th>Pertemuan</th>
<th>Tanggal</th>
<th>Learning Journey</th>
<th>Topic</th>
</tr>
</thead>
<tbody id="engineeringBody"></tbody>
</table>
<div id="noResultsEngineering" class="no-results" style="display: none">No topics found</div>
</div>
<!-- AI Python Tab Removed -->
</div>
</div>
<!-- JavaScript -->
</body>
</html>