-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
222 lines (207 loc) · 7.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Portfolio Website</title>
<link rel="stylesheet" href="css/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=Babylonica&family=Kalam&family=Merriweather&family=Open+Sans&family=Playfair+Display:wght@400;700&family=Poppins&family=Russo+One&family=Titillium+Web:wght@700&display=swap"
rel="stylesheet"
/>
<link
href="https://unpkg.com/[email protected]/css/boxicons.min.css"
rel="stylesheet"
/>
</head>
<body>
<!-- header -->
<header class="header">
<a href="#" class="logo"><span> My Portfolio</span></a>
<!-- icon -->
<i class="bx bx-menu" id="menu-icon"></i>
<nav class="navbar">
<a href="#home" class="active">Home</a>
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#contact">Contact</a>
</nav>
</header>
<!-- home section -->
<section class="home" id="home">
<div class="home-content">
<h3>Hello , It's Me</h3>
<h1><span>Raghav Mangla</span></h1>
<h3>And I'm a <span class="multiple-text">Frontend Developer</span></h3>
<p>
I am a second year student at NSUT (course:Computer Science with
Specialization in AI)
</p>
<p>
Looking forward to learn new things and discover my true self in this
journey!!
</p>
<div class="social-media">
<a href="https://www.linkedin.com/in/raghav-mangla-516a61226/"
><i class="bx bxl-linkedin"></i
></a>
<a href="https://twitter.com/RaghavMangla7"
><i class="bx bxl-twitter"></i
></a>
<a href="https://www.instagram.com/raghav_mangla04/"
><i class="bx bxl-instagram"></i
></a>
</div>
<a href="RaghavMangla_Resume.pdf" class="btn btn1" id="download" download>Download CV</a>
</div>
<div class="home-img">
<img src="images/mine.png" alt="" />
</div>
</section>
<!-- about section -->
<section class="about" id="about">
<div class="about-img">
<img src="images/mine.jpg" alt="" />
</div>
<div class="about-content">
<h2 class="heading">About <span>Me</span></h2>
<h3>Frontend Developer</h3>
<p class="visible-content">
My skill stack includes HTML,CSS and JS and I am currently learning
ReactJS
</p>
<div class="invisible-content">
<p>
I am currently studying in second year at NSUT. I love competitive
programming and regularly practice on platforms like
Codeforces,Codechef,Leetcode,etc.I am also a Frontend developer and
am currently learning ReactJS.Apart from that my other hobbies are
playing soccer and listening music.
</p>
</div>
<button class="btn more" id="more">Read more</button>
</div>
</section>
<section class="portfolio" id="portfolio">
<h2 class="heading"><span>Projects</span></h2>
<div class="portfolio-container">
<div class="portfolio-box">
<img src="images/bh.jpg" alt="" />
<div class="portfolio-layer">
<h4>Weather Forecast Website</h4>
<p>
This website can show the real-time weather of any city that the
user enters.The API used is api-ninjas.com
</p>
<a href="https://weatherforecast01.netlify.app/"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="portfolio-box">
<img src="images/education.jpg" alt="" />
<div class="portfolio-layer">
<h4>Education Website</h4>
<p>This project is a website design for an education platform.</p>
<a href="https://educateall.netlify.app/"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="portfolio-box">
<img src="images/burger.jpg" alt="" />
<div class="portfolio-layer">
<h4>Food Delivery Website</h4>
<p>This project is a web design for a food delivery website</p>
<a href="https://fooddelivery01.netlify.app/"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="portfolio-box">
<img src="images/gym.jpg" alt="" />
<div class="portfolio-layer">
<h4>Gym Registration Website</h4>
<p>This project is a web design for a gym registration website</p>
<a href="https://gym-registration-website.netlify.app/"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="portfolio-box">
<img src="images/portfolio.jpg" alt="" />
<div class="portfolio-layer">
<h4>Portfolio Website</h4>
<p>This website is my portfolio website</p>
<a href="#home"
><i class="bx bx-link"></i
></a>
</div>
</div>
<div class="portfolio-box">
<img src="images/spotify.webp" alt="" />
<div class="portfolio-layer">
<h4>Spotify Clone</h4>
<p>
Spotify Clone using ReactJS,Tailwind CSS and FIREBASE as Backend.
</p>
<a href="https://github.com/RaghavMangla"
><i class="bx bx-link"></i
></a>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<h2 class="heading"><span>Contact Details</span></h2>
<form
action="https://formsubmit.co/b5f99cccc22e60f32f5f36139445dd48"
method="POST"
>
<div class="input-box">
<input type="text" name="Name" placeholder="Full Name" required />
<input
type="email"
name="Email"
placeholder="Email Address"
required
/>
</div>
<div class="input-box">
<input
type="number"
name="Phone number"
placeholder="Mobile Number"
/>
<input type="text" placeholder="Email Subject" />
</div>
<textarea
name="Message"
id=""
cols="30"
rows="10"
placeholder="Your Message"
></textarea>
<button type="submit" class="btn btn3" >Send Message</button>
</form>
</section>
<!-- footer -->
<footer class="footer">
<div class="footer-text">
<p>CopyRights © 2023 by Raghav Mangla |All Rights Reserved.</p>
</div>
<div class="footer-icon">
<a href="#home"><i class="bx bx-up-arrow-alt"></i></a>
<p>Press arrow to return to home page</p>
</div>
</footer>
<!-- scroll reveal -->
<script src="https://unpkg.com/scrollreveal"></script>
<!-- typed js -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="js/script.js"></script>
</body>
</html>