-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
251 lines (231 loc) · 15.4 KB
/
Copy pathindex.html
File metadata and controls
251 lines (231 loc) · 15.4 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Why DevOps? · National Training Week 2026 · Infratify</title>
<meta name="description" content="Five free sharing sessions for beginners during National Training Week 2026, 20 to 24 July. One topic each morning on Zoom: Linux, Git and GitHub, Cloud, Docker, and Infrastructure as Code. A short introduction to each, brought by Infratify." />
<!-- Open Graph / social share -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Why DevOps? · National Training Week 2026" />
<meta property="og:description" content="Five free sharing sessions for beginners, 20 to 24 July 2026. An introduction to one DevOps topic at a time on Zoom." />
<meta property="og:image" content="https://infratify.github.io/ntw/assets/og.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Why DevOps? Five free sharing sessions for beginners, 20 to 24 July 2026, live on Zoom. Register free on NTW." />
<meta property="og:url" content="https://infratify.github.io/ntw/" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="https://infratify.github.io/ntw/assets/og.jpg" />
<link rel="icon" href="assets/favicon.png" type="image/png" />
<link rel="apple-touch-icon" href="assets/favicon.png" />
<style>
:root {
--bg: #0b0f19;
--panel: #131826;
--panel-2: #1a2133;
--text: #eef2fa;
--muted: #97a3ba;
--accent: #3a97e6; /* Infratify blue */
--line: #232c42;
--radius: 16px;
--shadow: 0 12px 40px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
margin: 0;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background:
radial-gradient(1100px 520px at 50% -12%, #17233f 0%, transparent 60%),
var(--bg);
color: var(--text);
line-height: 1.55;
-webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
a { color: inherit; }
/* Inline MDI icons */
.ic { width: 1em; height: 1em; fill: currentColor; vertical-align: -0.125em; flex: none; }
/* Hero */
header.hero { text-align: center; padding: 68px 0 30px; }
.kicker {
display: inline-block; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
color: var(--accent); border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
background: rgba(58,151,230,.06);
}
h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); margin: 20px 0 10px; line-height: 1.02; letter-spacing: -.02em; }
h1 .q { color: var(--accent); }
.tagline { font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--muted); margin: 0 auto; max-width: 660px; }
.facts {
display: flex; flex-wrap: wrap; gap: 8px 10px; justify-content: center;
margin: 24px auto 0; max-width: 760px;
}
.facts span {
display: inline-flex; align-items: center; gap: 7px;
font-size: .9rem; color: var(--text); background: var(--panel-2);
border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
}
.facts .ic { color: var(--accent); font-size: 1.05rem; }
.cta {
display: inline-flex; align-items: center; gap: 9px; margin-top: 30px;
background: var(--accent); color: #06122a; font-weight: 700; text-decoration: none;
padding: 15px 28px; border-radius: 999px; transition: transform .12s ease, box-shadow .12s ease;
box-shadow: 0 8px 24px rgba(58,151,230,.35);
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(58,151,230,.45); }
.cta .ic { font-size: 1.15rem; }
.brought {
margin-top: 26px; color: var(--muted); font-size: .9rem;
display: flex; align-items: center; justify-content: center; gap: 8px;
}
.logo { height: 30px; width: auto; vertical-align: middle; }
/* Sections */
section { padding: 40px 0; }
.section-head { text-align: center; margin: 0 0 28px; }
.section-head h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 6px; }
.section-head p { color: var(--muted); margin: 0 auto; max-width: 560px; }
#bootcamp .section-head { margin-bottom: 0; }
/* Schedule grid of banner cards, each linking to its HRDC registration page */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
.card {
display: block; text-decoration: none; color: inherit;
background: linear-gradient(180deg, var(--panel-2), var(--panel));
border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
transition: border-color .14s ease, box-shadow .14s ease, transform .14s ease;
--c: var(--accent);
}
.card:hover, .card:focus-visible { border-color: var(--c); box-shadow: var(--shadow); transform: translateY(-2px); }
.card img { display: block; width: 100%; height: auto; aspect-ratio: 1600 / 1000; background: var(--panel); }
.cap { display: flex; align-items: center; gap: 12px; padding: 14px 16px 16px; border-top: 3px solid var(--c); }
.badge {
flex: 0 0 auto; text-align: center; line-height: 1.05;
background: var(--c); color: #06122a; font-weight: 800; border-radius: 10px; padding: 8px 10px; min-width: 58px;
}
.badge .d { font-size: 1.25rem; display: block; }
.badge .m { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.cap-main { min-width: 0; }
.cap-main h3 { margin: 0; font-size: 1.2rem; }
.cap-main .when { color: var(--muted); font-size: .9rem; margin-top: 2px; }
.cap .go { margin-left: auto; color: var(--muted); font-size: 1.15rem; transition: color .14s ease; }
.card:hover .go, .card:focus-visible .go { color: var(--c); }
footer { border-top: 1px solid var(--line); margin-top: 30px; }
footer .wrap { padding-top: 34px; padding-bottom: 54px; text-align: center; color: var(--muted); font-size: .88rem; }
footer .who { color: var(--text); font-size: 1rem; margin-bottom: 6px; }
footer .who a {
color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px;
display: inline-flex; align-items: center; gap: 4px;
}
footer .who a:hover { color: var(--accent); }
footer .who a .ic { color: var(--accent); font-size: .95rem; }
footer .creds { font-size: .8rem; opacity: .85; margin-top: 10px; }
@media (max-width: 520px) {
.grid { grid-template-columns: 1fr; }
header.hero { padding-top: 52px; }
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; scroll-behavior: auto; } }
</style>
</head>
<body>
<div class="wrap">
<header class="hero">
<span class="kicker">Free · National Training Week 2026</span>
<h1>Why <span class="q">DevOps</span>?</h1>
<p class="tagline">Five free sharing sessions for beginners, one topic each morning.</p>
<div class="facts">
<span><svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M9,10V12H7V10H9M13,10V12H11V10H13M17,10V12H15V10H17M19,3A2,2 0 0,1 21,5V19A2,2 0 0,1 19,21H5C3.89,21 3,20.1 3,19V5A2,2 0 0,1 5,3H6V1H8V3H16V1H18V3H19M19,19V8H5V19H19M9,14V16H7V14H9M13,14V16H11V14H13M17,14V16H15V14H17Z"/></svg>20 to 24 July 2026</span>
<span><svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M12,20A8,8 0 0,0 20,12A8,8 0 0,0 12,4A8,8 0 0,0 4,12A8,8 0 0,0 12,20M12,2A10,10 0 0,1 22,12A10,10 0 0,1 12,22C6.47,22 2,17.5 2,12A10,10 0 0,1 12,2M12.5,7V12.25L17,14.92L16.25,16.15L11,13V7H12.5Z"/></svg>10:30 AM (MYT)</span>
<span><svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M15,8V16H5V8H15M16,6H4A1,1 0 0,0 3,7V17A1,1 0 0,0 4,18H16A1,1 0 0,0 17,17V13.5L21,17.5V6.5L17,10.5V7A1,1 0 0,0 16,6Z"/></svg>Live on Zoom</span>
<span><svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M2,22V20C2,20 7,18 12,18C17,18 22,20 22,20V22H2M11.3,9.1C10.1,5.2 4,6.1 4,6.1C4,6.1 4.2,13.9 9.9,12.7C9.5,9.8 8,9 8,9C10.8,9 11,12.4 11,12.4V17C11.3,17 11.7,17 12,17C12.3,17 12.7,17 13,17V12.8C13,12.8 13,8.9 16,7.9C16,7.9 14,10.9 14,12.9C21,13.6 21,4 21,4C21,4 12.1,3 11.3,9.1Z"/></svg>For absolute beginners</span>
</div>
<p class="brought">brought by <img class="logo" src="assets/logo-dark.svg" alt="Infratify" /></p>
</header>
<section id="schedule">
<div class="section-head">
<h2>Five sharing sessions</h2>
<p>Introduction walk-through of a each topic.</p>
</div>
<div class="grid">
<a class="card" style="--c:#d7a521" href="https://nationaltrainingweek.gov.my/courseDetails?courseId=31138" target="_blank" rel="noopener noreferrer">
<picture>
<source srcset="assets/banners/linux.webp" type="image/webp" />
<img src="assets/banners/linux.jpg" loading="lazy" width="1400" height="875"
alt="Why Linux? Free beginner sharing session on Monday 20 July 2026 at 10:30 AM on Zoom. Because Linux powers everything, gives full control, and is free forever. Trainer Ts. Ariff Azman." />
</picture>
<div class="cap">
<span class="badge"><span class="d">20</span><span class="m">Mon Jul</span></span>
<span class="cap-main"><h3>Why Linux?</h3><span class="when">10:30 AM · Zoom · Register on NTW</span></span>
<svg class="ic go" viewBox="0 0 24 24" aria-hidden="true"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>
</div>
</a>
<a class="card" style="--c:#d9432f" href="https://nationaltrainingweek.gov.my/courseDetails?courseId=31902" target="_blank" rel="noopener noreferrer">
<picture>
<source srcset="assets/banners/git-github.webp" type="image/webp" />
<img src="assets/banners/git-github.jpg" loading="lazy" width="1400" height="875"
alt="Why Git and GitHub? Free beginner sharing session on Tuesday 21 July 2026 at 10:30 AM on Zoom. Because it never forgets, keeps teams ready, and proves your work to employers. Trainer Ts. Ariff Azman." />
</picture>
<div class="cap">
<span class="badge"><span class="d">21</span><span class="m">Tue Jul</span></span>
<span class="cap-main"><h3>Why Git & GitHub?</h3><span class="when">10:30 AM · Zoom · Register on NTW</span></span>
<svg class="ic go" viewBox="0 0 24 24" aria-hidden="true"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>
</div>
</a>
<a class="card" style="--c:#e8752a" href="https://nationaltrainingweek.gov.my/courseDetails?courseId=31904" target="_blank" rel="noopener noreferrer">
<picture>
<source srcset="assets/banners/cloud.webp" type="image/webp" />
<img src="assets/banners/cloud.jpg" loading="lazy" width="1400" height="875"
alt="Why Cloud? Free beginner sharing session on Wednesday 22 July 2026 at 10:30 AM on Zoom. Because it needs no hardware, scales instantly, and goes global. Trainer Ts. Ariff Azman." />
</picture>
<div class="cap">
<span class="badge"><span class="d">22</span><span class="m">Wed Jul</span></span>
<span class="cap-main"><h3>Why Cloud?</h3><span class="when">10:30 AM · Zoom · Register on NTW</span></span>
<svg class="ic go" viewBox="0 0 24 24" aria-hidden="true"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>
</div>
</a>
<a class="card" style="--c:#2496ed" href="https://nationaltrainingweek.gov.my/courseDetails?courseId=31905" target="_blank" rel="noopener noreferrer">
<picture>
<source srcset="assets/banners/docker.webp" type="image/webp" />
<img src="assets/banners/docker.jpg" loading="lazy" width="1400" height="875"
alt="Why Docker? Free beginner sharing session on Thursday 23 July 2026 at 10:30 AM on Zoom. Because it works everywhere, ships anywhere, and is fast. Trainer Ts. Ariff Azman." />
</picture>
<div class="cap">
<span class="badge"><span class="d">23</span><span class="m">Thu Jul</span></span>
<span class="cap-main"><h3>Why Docker?</h3><span class="when">10:30 AM · Zoom · Register on NTW</span></span>
<svg class="ic go" viewBox="0 0 24 24" aria-hidden="true"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>
</div>
</a>
<a class="card" style="--c:#7c5cff" href="https://nationaltrainingweek.gov.my/courseDetails?courseId=31907" target="_blank" rel="noopener noreferrer">
<picture>
<source srcset="assets/banners/infra-as-code.webp" type="image/webp" />
<img src="assets/banners/infra-as-code.jpg" loading="lazy" width="1400" height="875"
alt="Why Infrastructure as Code? Free beginner sharing session on Friday 24 July 2026 at 10:00 AM on Zoom. Because it is perfectly repeatable, rebuilds anytime, and runs fully automated. Trainer Ts. Ariff Azman." />
</picture>
<div class="cap">
<span class="badge"><span class="d">24</span><span class="m">Fri Jul</span></span>
<span class="cap-main"><h3>Why Infra as Code?</h3><span class="when">10:00 AM · Zoom · Register on NTW</span></span>
<svg class="ic go" viewBox="0 0 24 24" aria-hidden="true"><path d="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z"/></svg>
</div>
</a>
</div>
</section>
<section id="bootcamp" style="text-align: center;">
<div class="section-head">
<h2>Why these topics?</h2>
<p>These topics are some of the fundamentals knowledge to understand for the next industrial revolution in Malaysia IT sector.</p>
</div>
<a class="cta" href="https://ml.my/infratify-devops-bootcamp">
Join the DevOps bootcamp
<svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z"/></svg>
</a>
</section>
</div>
<footer>
<div class="wrap">
<p class="who">Brought by <img class="logo" src="assets/logo-dark.svg" alt="Infratify" /> · Trainer
<a href="https://ml.my/op-tp" target="_blank" rel="noopener noreferrer">
<svg class="ic" viewBox="0 0 24 24" aria-hidden="true"><path d="M12 3C14.21 3 16 4.79 16 7S14.21 11 12 11 8 9.21 8 7 9.79 3 12 3M16 13.54C16 14.6 15.72 17.07 13.81 19.83L13 15L13.94 13.12C13.32 13.05 12.67 13 12 13S10.68 13.05 10.06 13.12L11 15L10.19 19.83C8.28 17.07 8 14.6 8 13.54C5.61 14.24 4 15.5 4 17V21H20V17C20 15.5 18.4 14.24 16 13.54Z"/></svg>Ts. Ariff Azman</a>
</p>
<p class="creds">HRD Corp Accredited Trainer · MBOT Professional Technologist · HRD Corp Registered Training Provider</p>
</div>
</footer>
</body>
</html>