-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
181 lines (143 loc) · 6.95 KB
/
Copy pathindex.html
File metadata and controls
181 lines (143 loc) · 6.95 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global Metadata and styles for the site -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pragati Sharma | Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="layout">
<!-- Fixed sidebar/intro -->
<aside class="sidebar">
<div class="sidebar-content">
<div class="intro-block">
<h1 class="hero-name">Pragati Sharma</h1>
<p class="hero-title">Student Developer</p>
<h2 class="hero-role">I’m learning to build impactful digital experiences.</h2>
</div>
<nav class="side-nav">
<a href="#about">About</a>
<a href="#projects">Projects</a>
</nav>
<!-- Social links -->
<div class="social-icons">
<a href="https://mail.google.com/mail/?view=cm&fs=1&to=1432pragga@gmail.com" title="Gmail"
target="_blank">
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/gmail.svg" alt="Gmail">
</a>
<a href="https://www.linkedin.com/in/pragati-s-5553b5259" title="LinkedIn" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/linkedin.svg"
alt="LinkedIn">
</a>
<a href="https://github.com/CyraTechZenith" title="GitHub" target="_blank">
<img src="https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/github.svg" alt="GitHub">
</a>
</div>
</div>
</aside>
<main class="main-content">
<!-- About -->
<section id="about" class="about-section">
<p>
I’m a <strong>Computer Science student</strong> with a strong interest in building efficient,
well-structured software.
I enjoy solving challenges that stretch my logical thinking 🧩 and constantly refine how I approach
<strong>design, performance, and maintainability</strong> in code.
</p>
<p>
My current focus is on mastering <strong>Java</strong> and developing <strong>Real-World
Projects</strong> that strengthen both my technical foundation and my ability to think like an
engineer ⚙️.
I’m especially drawn to how small, consistent improvements can evolve into systems that scale
reliably and make an actual difference.
</p>
<p>
In the long run, I aim to grow into a <strong>Software Engineer</strong> who contributes to
<strong>meaningful, scalable technology</strong> — the kind that improves how people work, connect,
and create 🚀.
</p>
</section>
<!-- Projects -->
<section id="projects">
<h2>Projects</h2>
<!-- Project Cards -->
<div class="grid">
<div class="card">
<img src="assets/images/portfolio-preview.png" alt="Portfolio Preview">
<div class="content">
<h3>Portfolio Website</h3>
<p>Personal website built from scratch — showcasing my skills, journey, and growth as a
developer.</p>
<a href="https://pragati-sharma.netlify.app" target="_blank" class="btn">
View Project
</a>
</div>
</div>
<div class="card">
<img src="https://placehold.co/600x400/111111/8b5cf6?text=Java+Dictionary+App"
alt="Java Dictionary Preview">
<div class="content">
<h3>Java Dictionary App</h3>
<p>An in-progress Java console app designed to store and search words efficiently using core
concepts.</p>
<a class="btn coming-soon">Coming Soon</a>
</div>
</div>
<div class="card">
<img src="https://placehold.co/600x400/111111/8b5cf6?text=Android+Study+Tracker"
alt="Study Tracker Preview">
<div class="content">
<h3>Android Study Tracker (Upcoming)</h3>
<p>A Java-based mobile app project in progress — designed to track daily study topics and
progress.</p>
<a class="btn coming-soon">Coming Soon</a>
</div>
</div>
</div>
</section>
</main>
</div>
<!-- Footer -->
<footer>
<p>
Designed and coded with 💜 by <strong>Pragati Sharma</strong> in <strong>Visual Studio Code</strong>.
Built using <strong>HTML</strong>, <strong>CSS</strong>, and a stubborn love for clean code.
</p>
</footer>
<!-- Cursor glow effect -->
<div class="cursor-glow"></div>
<script>
const glow = document.querySelector(".cursor-glow");
let timeout;
document.addEventListener("mousemove", (e) => {
glow.style.left = `${e.clientX}px`;
glow.style.top = `${e.clientY}px`;
glow.style.opacity = 0.6;
clearTimeout(timeout);
timeout = setTimeout(() => glow.style.opacity = 0, 400);
});
</script>
<script>
const sections = document.querySelectorAll("section");
const navLinks = document.querySelectorAll(".side-nav a");
window.addEventListener("scroll", () => {
let current = "";
sections.forEach((section) => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= sectionTop - sectionHeight / 3) {
current = section.getAttribute("id");
}
});
navLinks.forEach((link) => {
link.classList.remove("active");
if (link.getAttribute("href") === `#${current}`) {
link.classList.add("active");
}
});
});
</script>
</body>
</html>