Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anisha Takalkar | Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<header>
<nav class="navbar">
<div class="logo">Anisha</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#contact" class="btn">Contact</a></li>
</ul>
</nav>
</header>

<!-- Hero Section -->
<section id="home" class="hero">
<div class="hero-text">
<h1>Hello, I’m <span>Anisha Takalkar</span></h1>
<p>
I’m a <b>Java Full Stack Developer</b> and <b>Android Developer</b>.
Passionate about creating innovative web and mobile applications with
clean code and user-focused design.
</p>
<a href="#contact" class="btn">Say Hello!</a>
</div>
<div class="hero-img">
<img src="images/profile.jpg" alt="Anisha Takalkar">
</div>
</section>

<!-- About Section -->
<section id="about" class="about">
<h2>About Me</h2>
<p>
Hi, I’m <b>Anisha Takalkar</b>. I have completed
<b>Java Full Stack Development</b> training and worked on several
<b>Android projects</b>. I enjoy building apps that combine creativity
with technical skills.
</p>
</section>

<!-- Services Section -->
<section id="services" class="services">
<h2>My Services</h2>
<div class="service-container">
<div class="service-card">
<h3>Full Stack Development</h3>
<p>Develop responsive web applications using Java, Spring Boot, MySQL, and React/Angular.</p>
</div>
<div class="service-card">
<h3>Android Development</h3>
<p>Design and build user-friendly Android apps using Kotlin, Java, and Firebase.</p>
</div>
<div class="service-card">
<h3>UI/UX Design</h3>
<p>Create clean and modern interfaces with a focus on user experience.</p>
</div>
</div>
</section>

<!-- Portfolio Section -->
<section id="portfolio" class="portfolio">
<h2>Portfolio</h2>
<div class="portfolio-grid">
<div class="portfolio-item">Weather Forecast App</div>
<div class="portfolio-item">Travel Booking App</div>
<div class="portfolio-item">Library Management System</div>
<div class="portfolio-item">AgriShop Farmers Platform</div>
</div>
</section>

<!-- Contact Section -->
<section id="contact" class="contact">
<h2>Contact Me</h2>
<form class="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>
<p>© 2025 Anisha Takalkar. All Rights Reserved.</p>
</footer>

<script src="script.js"></script>
</body>
</html>