-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (69 loc) · 3.02 KB
/
index.html
File metadata and controls
73 lines (69 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Jay Kumar – Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="forbes-header">
<div class="forbes-logo">FORBES</div>
<nav class="forbes-nav">
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</nav>
</header>
<main class="forbes-main">
<section class="feature-area">
<img src="https://avatars.dicebear.com/api/avataaars/jaykumar52v.svg" class="feature-img" alt="Profile">
<div class="feature-content">
<h1>Jay Kumar</h1>
<p class="lead">Engineering Real-World Solutions</p>
<p>Python, Java, SQL, Pandas, AI/ML specialist.<br>
Professional, driven, and skilled—with proven project results and standout leadership.</p>
<div class="social-links">
<a href="https://www.linkedin.com/in/jaykumar52v" class="linkedin" target="_blank" title="LinkedIn">LinkedIn</a>
<a href="https://twitter.com/jaykumar52v" class="twitter" target="_blank" title="Twitter">Twitter</a>
<a href="https://www.hackerrank.com/jaykumar52v" class="hackerrank" target="_blank" title="HackerRank">HackerRank</a>
<a href="https://leetcode.com/jaykumar52v" class="leetcode" target="_blank" title="LeetCode">LeetCode</a>
</div>
</div>
</section>
<section class="side-cards">
<div class="side-card">
<h2>News/Project: AI Chatbot</h2>
<p>Conversational assistant using Python & ML for customer service.</p>
</div>
<div class="side-card">
<h2>Leadership</h2>
<p>Proven skills: Teamwork, confidence, public speaking. Developed through NCC, RDC, and technical seminars.</p>
</div>
<div class="side-card">
<h2>Analytics Dashboard</h2>
<p>Powerful real-time insights platform using Pandas & SQL for business operations.</p>
</div>
</section>
<section class="sub-cards">
<div class="news-card">
<h3>Java Quiz App</h3>
<p>Mobile-first, instant scoring, database-driven.</p>
</div>
<div class="news-card">
<h3>Skills</h3>
<ul>
<li>Python, Java, SQL, Pandas</li>
<li>AI/ML Modeling</li>
<li>Public Speaking & Teamwork</li>
</ul>
</div>
</section>
</main>
<footer>
© 2025 Jay Kumar. Inspired by Forbes.com.
</footer>
<script src="script.js"></script>
</body>
</html>