-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (98 loc) · 2.96 KB
/
index.html
File metadata and controls
104 lines (98 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Full Stack Developer Portfolio</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Header -->
<header>
<nav>
<div class="logo">KN</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About Me</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<h1>Hi, I'm Kshitij Nikose - A Full Stack Developer</h1>
<p>Building dynamic web applications with Java, React.js, and more.</p>
<a href="#contact" class="cta-button">Let's Work Together</a>
</section>
<!-- About Me -->
<section id="about" class="about">
<img src="p.jpg" alt="Your Photo" />
<div>
<h2>About Me</h2>
<p>
I'm a Full Stack Developer with a passion for coding and
problem-solving. I specialize in JavaScript, React.js, and backend
technologies like Spring Boot.
</p>
<h3>Skills</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>PHP</li>
<li>React.js</li>
<li>Node.js</li>
<li>Spring Boot</li>
<li>MySQL</li>
</ul>
</div>
</section>
<!-- Projects -->
<section id="projects" class="projects">
<h2>My Projects</h2>
<div class="project-card">
<img src="project1.jpg" alt="Project 1" />
<h3>Project 1</h3>
<p>Short description of the project.</p>
<a href="https://github.com/your-repo" target="_blank"
>View on GitHub</a
>
</div>
<div class="project-card">
<img src="project2.jpg" alt="Project 2" />
<h3>Project 2</h3>
<p>Short description of the project.</p>
<a href="https://github.com/your-repo" target="_blank"
>View on GitHub</a
>
</div>
</section>
<!-- Contact -->
<section id="contact" class="contact">
<h2>Contact Me</h2>
<form id="contact-form">
<input type="text" placeholder="Your Name" required />
<input type="email" placeholder="Your Email" required />
<textarea placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<!-- Footer -->
<footer>
<p>© 2024 Kshitij Nikose. All Rights Reserved.</p>
<ul>
<li>
<a
href="https://www.linkedin.com/in/kshitij-nikose-b87355207/"
target="_blank"
>LinkedIn</a
>
</li>
<li>
<a href="https://github.com/nikokshitij" target="_blank">GitHub</a>
</li>
</ul>
</footer>
<script src="script.js"></script>
</body>
</html>