-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (97 loc) · 3.77 KB
/
Copy pathindex.html
File metadata and controls
112 lines (97 loc) · 3.77 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arjun Kumar | Portfolio</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
</head>
<body>
<!-- ----- Navigation Bar ----- -->
<header>
<nav>
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#skills">Skills</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- ----- Hero Section ----- -->
<section id="home">
<h1>Hello, I'm <span>Arjun Kumar</span></h1>
<p>Welcome to my portfolio! I’m a passionate web developer who loves creating clean, modern, and responsive websites.</p>
<a href="resume.pdf" download class="resume-btn">📄 Download Resume</a>
</section>
<!-- ----- About Section ----- -->
<section id="about">
<h2>About Me</h2>
<div class="about-container">
<img src="./Arjun.jpg" alt="Arjun Kumar" class="about-img">
<p>I’m a creative and detail-oriented front-end developer who enjoys bringing ideas to life through code. My focus is on crafting beautiful and functional web experiences with modern technologies.</p>
</div>
</section>
<!-- ----- Skills Section ----- -->
<section id="skills">
<h2>My Skills</h2>
<div class="skills-list">
<div class="skill">HTML</div>
<div class="skill">CSS</div>
<div class="skill">JavaScript</div>
<div class="skill">Responsive Design</div>
<div class="skill">GitHub</div>
<div class="skill">React (Learning)</div>
</div>
</section>
<!-- ----- Projects Section ----- -->
<section id="projects">
<h2>Projects</h2>
<div class="project-grid">
<a href="gallery.html" class="project">
<h3>🌆 Image Gallery</h3>
<p>A responsive gallery with lightbox view built using HTML, CSS, and JS.</p>
</a>
<a href="index.html" class="project">
<h3>📘 Portfolio Website</h3>
<p>This site! A personal portfolio showcasing my skills and projects.</p>
</a>
<a href="calculator.html" class="project">
<h3>⚙ Calculator App</h3>
<p>A simple calculator built using HTML, CSS, and JavaScript logic.</p>
</a>
<a href="admit.html" class="project">
<h3>🎫 Admit Card</h3>
<p>Find Your Admit Card.</p>
</a>
<a href="result.html" class="project">
<h3>🎫check result </h3>
<p>Find Your result</p>
</a>
</div>
</section>
<!-- ----- Contact Section ----- -->
<section id="contact">
<h2>Contact Me</h2>
<form class="contact-form" onsubmit="sendMessage(event)">
<input type="text" id="name" placeholder="Your Name" required>
<input type="email" id="email" placeholder="Your Email" required>
<textarea id="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
<p id="status" class="status"></p>
<!-- ✅ Social Links Section -->
<div class="social-links">
<a href="https://github.com/arjunkumar20-kd/" target="_blank" title="GitHub"><i class="fab fa-github"></i></a>
<a href="https://www.linkedin.com/in/arjun-kumar-05055930b" target="_blank" title="LinkedIn"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/your_arjun_7x._/" target="_blank" title="Instagram"><i class="fab fa-instagram"></i></a>
</div>
</section>
<footer>
<p>© 2025 Arjun Kumar | Built with 💙 using HTML, CSS & JS</p>
</footer>
<!-- EmailJS Library -->
<script src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script src="script.js"></script>
</body>
</html>