forked from The-Coding-Clubhouse/TCC-official-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogram.html
More file actions
30 lines (28 loc) · 857 Bytes
/
Copy pathprogram.html
File metadata and controls
30 lines (28 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Programs</title>
<script src="/javaScript/main.js" defer></script>
</head>
<body>
<div id="app">
<section class="p-10">
<h1 class="text-3xl font-bold">Our Programs</h1>
<p class="mt-4 text-gray-600">
Explore our coding programs for students of all levels.
</p>
</section>
<section class="grid grid-cols-2 gap-6 p-10">
<div class="bg-white shadow rounded-xl p-6">
<h2 class="font-semibold text-xl">Beginner Coding</h2>
<p>Learn HTML, CSS, and JavaScript fundamentals.</p>
</div>
<div class="bg-white shadow rounded-xl p-6">
<h2 class="font-semibold text-xl">Advanced Development</h2>
<p>Build full-stack apps and real-world projects.</p>
</div>
</section>
</div>
</body>
</html>