-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
291 lines (288 loc) · 9.41 KB
/
index.html
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Portfolio</title>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai+Looped&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&family=Ubuntu:wght@300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav id="navbar">
<div class="logo">S.P</div>
<div>
<ul class="nav-links">
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<nav id="hamburger-nav">
<div class="logo"></div>
<div class="hamburger-menu">
<div class="hamburger-icon" onclick="toggleMenu()">
<span></span>
<span></span>
<span></span>
</div>
<div class="menu-links">
<li><a href="#about" onclick="toggleMenu()">About</a></li>
<li><a href="#experience" onclick="toggleMenu()">Experience</a></li>
<li><a href="#projects" onclick="toggleMenu()">Projects</a></li>
<li><a href="#contact" onclick="toggleMenu()">contact</a></li>
</div>
</div>
</nav>
</header>
<section id="profile">
<div class="section__pic__container">
<img
src="me1.jpg"
alt="Shreya Pal profile picture"
class="profile-pic"
/>
</div>
<div class="section__text">
<p class="section__text__p1">Hello,I'm</p>
<h1 class="title">Shreya Pal</h1>
<p class="section__text__p2">UI/UX Designer</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="window.open('./img/resume.pdf')"
>
Resume
</button>
<button class="btn btn-color-1" onclick="location.href='#contact'">
contact Info
</button>
</div>
<div class="socials-container">
<img
src="./img/linkedin.png"
class="icon"
onclick="location.href=https://in.linkedin.com/"
alt="My Linkdin profile"
/>
<img
src="./img/github.png"
class="icon"
onclick="location.href='https://github.com/Shreyapal18"
alt="My Github profile"
/>
</div>
</div>
</section>
<section id="about">
<p class="section__text__p1">Get To Know More</p>
<h1 class="title">About Me</h1>
<div class="section-container">
<div class="section__pic__container">
<img src="me3.jpg" alt="profile picture" class="about-pic" />
</div>
<div class="about-details-container">
<div class="about-container">
<div class="details-container">
<img src="./img/experience.png" alt="experience" class="icon" />
<h3>Experience</h3>
<p>
Video Editing
<br />
Web Development
</p>
</div>
<div class="details-container">
<img src="./img/education.png" alt="education" class="icon" />
<h3>Education</h3>
<p>
O Level Diploma <br />
B-Tech (Bachelor of Technology)
</p>
</div>
</div>
<div class="text-container">
<p>
I'm a passionate tech enthusiast driven by an insatiable curiosity
for the ever-evolving world of technology. The thrill of
encountering new advancements in the tech sphere never fails to
ignite my enthusiasm. I find myself energized and eager to embark
on a journey of self-discovery and skill acquisition whenever I
stumble upon a novel concept or emerging technology
</p>
</div>
</div>
</div>
</section>
<section id="experience">
<p class="section__text__p1">Explore My</p>
<h1 class="title">Experience</h1>
<div class="experience-details-container">
<div class="about-container">
<div class="details-container">
<h2 class="experience-sub-title">Designing Domain</h2>
<div class="article-container">
<article>
<img
src="./img/checkmark.png"
alt="experience-icon"
class="icon"
/>
<div>
<h3>Web Front</h3>
<p>Intermediate</p>
</div>
</article>
<article>
<img
src="./img/checkmark.png"
alt="experience-icon"
class="icon"
/>
<div>
<h3> HTML/CSS</h3>
<p>Basics</p>
</div>
</article>
</div>
</div>
<div class="details-container">
<h2 class="experience-sub-title">Editing Domain</h2>
<div class="article-container">
<article>
<img
src="./img/checkmark.png"
alt="experience-icon"
class="icon"
/>
<div>
<h3>Video</h3>
<p>Experienced</p>
</div>
</article>
<article>
<img
src="./img/checkmark.png"
alt="experience-icon"
class="icon"
/>
<div>
<h3>Post</h3>
<p>Intermediate</p>
</div>
</article>
</div>
</div>
</div>
</div>
</section>
<section id="projects">
<p class="section__text__p1">Browse My Recent</p>
<h1 class="title">Projects</h1>
<div class="experience-details-container">
<div class="about-container">
<div class="details-container color-container">
<div class="article-container">
<img
src="./img/utube.jpg"
alt="randome cat facts"
class="project-img"
/>
</div>
<h2 class="experience-sub-title project-title">
This is my Youtube Channel.
</h2>
<p>
In this project which I made for my Mother . The Editing
and Designing part is handeled by me .
</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="location.href='https://youtube.com/@bakenbungzb?si=2kGh3bcu3TGZDDEQ'"
>
Youtube
</button>
</div>
</div>
<div class="details-container color-container">
<div class="article-container">
<img src="./img/instagram.png" alt="simon game" class="project-img" />
</div>
<h2 class="experience-sub-title project-title">Instagram</h2>
<p>
This project is my Home-Bakery Account . It's Posts , Reels
and Analytics are handeled by me.
</p>
<div class="btn-container">
<button
class="btn btn-color-2"
onclick="location.href='https://instagram.com/bakenbungzb?igshid=NjIwNzIyMDk2Mg=='"
>
Instagram
</button>
</div>
</div>
</div>
</div>
</section>
<section id="contact">
<p class="section__text__p1">Get in Touch</p>
<h1 class="title">Contact Me</h1>
<div class="experience-details-container">
<form onsubmit="sendEmail(); reset(); return false;">
<input
type="text"
name="name"
id="name"
placeholder="Your Name"
required
/>
<input
type="email"
name="email"
id="email "
placeholder="Email Id"
required
/>
<textarea
name="message"
id="message"
rows="4"
placeholder="How can we help you?"
required
></textarea>
<button type="submit" class="btn btn-color-2">Send</button>
</form>
</div>
</section>
<footer>
<div class="links">
<img
src="./img/instagram.png"
alt="instagram"
onclick="location.href=https://www.instagram.com/"
/>
<img
src="./img/linkedin.png"
alt="Linkdin"
onclick="location.href=https://in.linkedin.com/"
/>
<img
src="./img/github.png"
alt="github"
onclick="location.href='https://github.com/Shreyapal18"
/>
</div>
<p>Copyright © 2023 Shreya Pal . All Right Reserved.</p>
</footer>
<script src="app.js"></script>
</body>
</html>