-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
88 lines (75 loc) · 4.26 KB
/
resume.html
File metadata and controls
88 lines (75 loc) · 4.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link rel="stylesheet" href="styles.css">
<!-- External Fonts and Icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
</head>
<body>
<header>
<h1>My Resume</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="biodata.html">Bio-data</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Me</h2>
<p>
Hello, I’m Soundar Balaji J, a Computer Science Engineer with a passion for crafting code that propels technological advancement. I’m dedicated to building creative solutions through software development.
<br><br>
I have honed my skills in Full Stack Web Development, working with technologies like HTML, CSS, JavaScript, ReactJS, NodeJS, ExpressJS, Python, MongoDB, and more. Currently, I'm exploring Android development and Cybersecurity.
<br><br>
<strong>Background:</strong>
<br>
I am currently a third-year undergraduate student at Sir M. Visvesvaraya Institute of Technology, pursuing a degree in B.E/BTECH.
<br><br>
<strong>What Drives Me:</strong>
<br>
I am passionate about learning new technologies and exploring emerging fields in computer science, including Cybersecurity. My goal is to contribute to impactful, scalable systems.
<br><br>
<strong>Achievements:</strong>
<br>
I have successfully reported security vulnerabilities through bug-bounty programs, with recognition from companies like OpenMage, Clario, and LifeOmic. Additionally, I've worked on several mini-projects during my studies.
</p>
</section>
<section>
<h2>Education</h2>
<p>Bachelor's in Computer Science - Sir M. Visvesvaraya Institute of Technology, Bangalore (2024)</p>
</section>
<section style="background-color: #ffffff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; margin-bottom: 2em; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);">
<h2 style="font-size: 2rem; color: #333; margin-bottom: 15px; text-align: center;">Skills</h2>
<ul style="list-style-type: none; padding-left: 0; font-size: 1.1rem; line-height: 1.8; color: #555;">
<li style="margin-bottom: 10px; font-weight: bold;">HTML, CSS, JavaScript</li>
<li style="margin-bottom: 10px; font-weight: bold;">React, Flask, NodeJS</li>
<li style="margin-bottom: 10px; font-weight: bold;">Machine Learning, Python</li>
<li style="margin-bottom: 10px; font-weight: bold;">Cybersecurity & Penetration Testing</li>
<li style="margin-bottom: 10px; font-weight: bold;">Database: MongoDB, Firebase, SQL</li>
</ul>
</section>
<section>
<h2>Let’s Connect</h2>
<p>Feel free to connect with me on LinkedIn, GitHub, or send me an email at <a href="mailto:soundarbalaji3078@gmail.com">soundarbalaji3078@gmail.com</a></p>
<div class="socialicon">
<a href="https://www.instagram.com/soundar__msd/"><ion-icon name="logo-instagram" class="social"></ion-icon></a>
<a href="https://www.linkedin.com/in/soundar-balaji-j-133b691b9/"><ion-icon name="logo-linkedin"></ion-icon></a>
<a href="https://github.com/soundar3078"><ion-icon name="logo-github"></ion-icon></a>
</div>
</section>
</main>
<footer>
<p>© 2024 Soundar Balaji J. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>