-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcourses.html
More file actions
87 lines (74 loc) · 4.03 KB
/
Copy pathcourses.html
File metadata and controls
87 lines (74 loc) · 4.03 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
<!doctype html>
<html lang="en">
<head>
<link rel="icon" href="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9ImdyYWQiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMTAwJSIgeTI9IjEwMCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0eWxlPSJzdG9wLWNvbG9yOiM5ZDBiMGI7c3RvcC1vcGFjaXR5OjEiIC8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdHlsZT0ic3RvcC1jb2xvcjojMmQwZjI1O3N0b3Atb3BhY2l0eToxIiAvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjIiIHk9IjIiIHdpZHRoPSIyOCIgaGVpZ2h0PSIyOCIgcng9IjQiIHJ5PSI0IiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjx0ZXh0IHg9IjE2IiB5PSIxNSIgZG9taW5hbnQtYmFzZWxpbmU9Im1pZGRsZSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgZm9udC1mYW1pbHk9IkFyaWFsLCBzYW5zLXNlcmlmIiBmb250LXNpemU9IjIwIiBmb250LXdlaWdodD0iYm9sZCIgZmlsbD0iI2ZmZmZmZiI+UEY8L3RleHQ+PC9zdmc+">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Courses — S Balaji</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap" rel="stylesheet">
</head>
<body>
<header class="site-header">
<div class="container header-inner">
<div class="brand">
<a href="index.html">My Portfolio</a>
</div>
<nav class="nav" id="nav">
<a href="index.html"><i class="fas fa-home"></i> Home</a>
<a href="courses.html"><i class="fas fa-book"></i> Courses</a>
<a href="skills.html"><i class="fas fa-code"></i> Skills</a>
<a href="projects.html"><i class="fas fa-folder-open"></i> Projects</a>
<a href="contact.html"><i class="fas fa-envelope"></i> Contact</a>
</nav>
<button class="nav-toggle" id="navToggle">☰</button>
</div>
</header>
<main>
<section class="section">
<div class="container">
<h2 class="section-title">Courses Completed</h2>
</div>
<div class="section-body">
<p class="lead">
Courses completed through Springboard and self learning. More will be added as I progress.
</p>
<div
style="max-width:700px;margin:0 auto;text-align:left;margin-top:40px;font-size:18px;color:#ddd;line-height:32px;">
<p>• HTML5 – Springboard</p>
<p>• Networking & Web Technology – Springboard</p>
<p>• CSS3 – Springboard</p>
<p>• JavaScript – Springboard</p>
<p>• Frontend Developer Certification – Springboard</p>
<p>• Modern HTML/CSS/JS – Springboard</p>
<p>• Java Fundamentals – Springboard</p>
<p>• Web Development Fundamentals (HTML, CSS)</p>
<p>• Basic Java Programming</p>
<br>
</div>
<div style="text-align:center; margin-top:30px;">
<a href="https://drive.google.com/drive/folders/1xPXwhBde2K3tqclMj-JLmlgXuqmvYo0m?usp=drive_link"
target="_blank" class="drive-btn">
<i class="fab fa-google-drive"></i> View in GDrive
</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container">
<p>© 2026 · S Balaji | Debugging life one line at a time.</p>
</div>
</footer>
<script>
const navToggle = document.querySelector('.nav-toggle');
const nav = document.querySelector('.nav');
navToggle.addEventListener('click', () => {
nav.classList.toggle('open');
});
</script>
</body>
</html>