-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (91 loc) · 3.07 KB
/
index.html
File metadata and controls
98 lines (91 loc) · 3.07 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
<!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>