-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
158 lines (131 loc) · 4.9 KB
/
index.html
File metadata and controls
158 lines (131 loc) · 4.9 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pallavi | Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top custom-navbar">
<div class="container">
<a class="navbar-brand fw-bold" href="#">Pallavi</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#home">Home</a></li>
<li class="nav-item"><a class="nav-link" href="#skills">Skills</a></li>
<li class="nav-item"><a class="nav-link" href="#projects">Projects</a></li>
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-section d-flex align-items-center">
<div class="container">
<div class="row align-items-center">
<!-- Text -->
<div class="col-lg-6">
<h1 class="hero-title">Hi, I'm Pallavi</h1>
<h4 class="hero-subtitle mt-3">
Computer Science Engineering Student (AI & ML)
</h4>
<p class="hero-text mt-4">
Passionate about Web Development, Python, Java and Data Structures.
I focus on building clean, responsive and user-friendly applications.
</p>
<div class="mt-4">
<a href="#projects" class="btn btn-light me-3 px-4">View Projects</a>
<a href="#contact" class="btn btn-outline-light px-4">Contact Me</a>
</div>
<!-- Social Links -->
<div class="social-icons mt-4">
<a href="https://github.com/pallavinasika" target="_blank">
<i class="bi bi-github"></i>
</a>
<a href="www.linkedin.com/in/pallavi-nasika-190916390" target="_blank">
<i class="bi bi-linkedin"></i>
</a>
<a href="mailto:pallavinasika@gmail.com">
<i class="bi bi-envelope-fill"></i>
</a>
</div>
</div>
<!-- Image -->
<div class="col-lg-6 text-center mt-5 mt-lg-0">
<div class="profile-wrapper">
<img src="images/profile.jpg" alt="Pallavi" class="profile-img">
</div>
</div>
</div>
</div>
</section>
<!-- Skills -->
<section id="skills" class="section-padding text-center">
<div class="container">
<h2 class="section-title mb-5">Skills</h2>
<div class="row">
<div class="col-md-3 mb-4"><div class="skill-box">HTML</div></div>
<div class="col-md-3 mb-4"><div class="skill-box">CSS</div></div>
<div class="col-md-3 mb-4"><div class="skill-box">Python</div></div>
<div class="col-md-3 mb-4"><div class="skill-box">Java</div></div>
</div>
</div>
</section>
<!-- Projects -->
<section id="projects" class="bg-light section-padding text-center">
<div class="container">
<h2 class="section-title mb-5">Projects</h2>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card project-card shadow h-100">
<div class="card-body">
<h5>Personal Portfolio Website</h5>
<p>Responsive portfolio built using HTML, CSS and Bootstrap.</p>
<a href="#" class="btn btn-dark btn-sm">View Code</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card project-card shadow h-100">
<div class="card-body">
<h5>Crypto Portfolio Manager</h5>
<p>Track and manage cryptocurrency investments.</p>
<a href="#" class="btn btn-dark btn-sm">View Code</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card project-card shadow h-100">
<div class="card-body">
<h5>Student Result System</h5>
<p>Python-based academic result management system.</p>
<a href="#" class="btn btn-dark btn-sm">View Code</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="section-padding text-center">
<div class="container">
<h2 class="section-title mb-4">Contact</h2>
<p>Email: pallavinasika@gmail.com</p>
<p>Location: India</p>
</div>
</section>
<footer class="text-center py-3 bg-dark text-white">
© 2026 Pallavi | Portfolio
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>