-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (84 loc) · 4.21 KB
/
Copy pathindex.html
File metadata and controls
96 lines (84 loc) · 4.21 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
<!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>S Balaji — Portfolio</title>
<meta name="description" content="S Balaji — Aspiring Software Engineer. C, Python, Web Dev, OpenCV, MediaPipe.">
<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" aria-label="Toggle navigation">☰</button>
</div>
</header>
<main>
<section id="hero" class="hero">
<div class="container">
<img src="images/profile.jpg" alt="Balaji Profile Photo" style="width:250px;
height:250px;
border-radius:50%;
margin-top:15px;
border:3px solid #ff4c4c;
box-shadow:0 0 10px #ff4c4c, 0 0 25px #ff4c4c, 0 0 50px #ff4c4c;">
<h1 class="hero-title">Hi! <span class="name">I am Balaji </span></h1>
</div>
<div class="hero-body">
<p style="margin-top:18px;color:#ddd;font-size:18px;">
A passionate second-year Computer Science Engineering student with a strong love for coding and technology.
Skilled in C and Python, and currently learning C++, Java and full-stack web development, I focus on building
innovative projects, exploring data science and AI/ML, and solving complex problems.
</p>
<p class="hero-sub">
Aspiring Front End Developer <span class="muted">| Just a cool silent guy with skills</span>
</p>
<div class="hero-cta">
<a class="btn" href="https://drive.google.com/file/d/1dBXYy9T8BZM4R63eC6XP492eHlbMMTI_/view?usp=sharing">View
My Resume</a>
<a class="btn" href="contact.html">Contact Me</a>
</div>
<div class="hero-meta">
<span>Core: C · Python · HTML · CSS</span>
</div>
<div class="social-links">
<a href="https://github.com/Balaji-Coder06" target="_blank">
<i class="fab fa-github"></i> GitHub
</a>
<a href="https://www.linkedin.com/in/s-balaji06/" target="_blank">
<i class="fab fa-linkedin"></i> LinkedIn
</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>