-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (76 loc) · 2.93 KB
/
index.html
File metadata and controls
85 lines (76 loc) · 2.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Guhan K.B | Portfolio</title>
<link rel="stylesheet" href="style.css" />
<script defer src="script.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap" rel="stylesheet">
</head>
<body>
<!-- HEADER -->
<header>
<nav class="nav-container">
<div class="nav-logo">My Portfolio</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="publications.html">Publications</a></li>
<li><a href="EXPERIENCE.html">Experience</a></li>
<li> <a href="certificates.html"> Certifications</a></li>
<li><button id="toggleTheme">🌙</button></li>
</ul>
</nav>
</header>
<!-- HOME SECTION -->
<section id="home" class="main-content">
<div class="left-column">
<img src="profile1.jpg" alt="Guhan K.B" class="profile-img">
<h1>Guhan K.B</h1>
<p class="title">AI & Machine Learning Enthusiast</p>
<p>📍 Salem, Tamil Nadu, India</p>
<p>🤙 mobile.no: 9345687287 </p>
<p>📧 <a href="mailto:guhankb575@gmail.com">guhankb575@gmail.com</a></p>
<p><a href="https://in.linkedin.com/in/guhan-balachandran-ab49b92a5" target="_blank">LinkedIn Profile</a></p>
<p> <a href=https:"//github.com/Guhanbala/"> Github </a></p>
</div>
<div class="right-column">
<h2>About Me</h2>
<p>I'm a B.Tech student in Artificial Intelligence & Data Science at Amrita Vishwa Vidyapeetham. Passionate about LLMs, Reinforcement Learning, and building socially impactful AI systems.</p>
<h2>Education</h2>
<p><strong>Amrita Vishwa Vidyapeetham, Coimbatore</strong><br>B.Tech in AI & Data Science (2023–2027)</p>
<p><strong>Emerald Valley Public School, Salem</strong><br> Secondary and Higher Secondary Education </p>
<h2>Skills</h2>
<ul>
<li>Python, Java, C</li>
<li>HTML, CSS, JS, Flutter</li>
<li>MySQL, MATLAB, Excel</li>
<li>AI,Machine learning,Deep Learning</li>
</ul>
<h2> Soft Skills</h2>
<li>Public speaking, Presentation skills</li>
<li>Decision making, Teamwork</li>
</div>
</section>
<!-- CLUBS -->
<section class="info-section">
<h2>Clubs & Activities</h2>
<ul>
<li>Youth United Council of India</li>
<li>Intel IoT Club</li>
<li>Sadhana Club</li>
</ul>
</section>
<!-- LANGUAGES -->
<section class="info-section">
<h2>Languages & Hobbies</h2>
<p><strong>Languages:</strong> English, Tamil, Telugu[Conversational] </p>
<p><strong>Hobbies:</strong> Painting, Movies, Travel</p>
</section>
<!-- FOOTER -->
<footer>
<p> Guhan K.B | Portfolio</p>
</footer>
</body>
</html>