-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (63 loc) · 1.97 KB
/
Copy pathindex.html
File metadata and controls
68 lines (63 loc) · 1.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Mayank's Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Mayank</h1>
<nav>
<a href="#projects">Projects</a>
<a href="#skills">Skills</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h2>Hello, I'm Mayank 👋</h2>
<p>I'm Mayank, a B.Tech Computer Science student at KIIT University, graduating in 2027.
I'm a passionate and detail-oriented developer who enjoys building sleek, interactive applications — both web and desktop.
I'm proficient in Java (with multiple Swing-based projects) as well as modern web technologies like React, Node.js, and Socket.IO.
Beyond coding, I’m deeply passionate about cricket and music — they keep me grounded and inspired.</p>
</section>
<section id="projects">
<h3>💼 Projects</h3>
<div class="project-grid">
<div class="project-card">
<h4>🧠 Quiz App</h4>
<p>Dynamic quiz with score & answers.</p>
</div>
<div class="project-card">
<h4>💬 Chat App</h4>
<p>Real-time chat with Socket.IO</p>
</div>
</div>
</section>
<section id="skills">
<h3>🛠️ Skills</h3>
<ul class="skills-list">
<li>C</li>
<li>Java</li>
<li>Python</li>
<li>Web developer</li>
<li>Java Swing</li>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>React.js</li>
<li>Node.js</li>
<li>MongoDB</li>
</ul>
</section>
<section id="contact">
<h3>📬 Contact</h3>
<p>Email: <a href="mailto:mayankprof19@gmail.com">mayankprof19@gmail.com</a></p>
</section>
<footer>
<p>© 2025 Mayank. All rights reserved.</p>
</footer>
</body>
</html>