-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
262 lines (258 loc) · 16.2 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
<html>
<head>
<title>Ruchit Kalathiya</title>
<link rel="stylesheet" href="./css/style.css">
<link rel = "icon" href = "./icons/title.png" type = "image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Navigation-Bar Section -->
<section class="nav-bar">
<nav class="navbar navbar-expand-lg" style="padding-bottom: 0;">
<a class="navbar-brand" style="padding-bottom: 15px;" href="#">
<img src="./images/title.jpg" alt=""><span>Ruchit_Kalathiya</span>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<i class="fa fa-bars"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto box-wrap">
<li class="nav-item box">
<a class="nav-link" style="padding-right: 13px;" href="#About">About</a>
</li>
<li class="nav-item dropdown box">
<div class="nav-link dropdown">
<button class="dropbtn" style="padding-bottom: 15px;">Resume
<i class="fa fa-caret-down"></i>
</button>
<div class="flex-row-reverse dropdown-content ">
<a href="#page-1"><span>Education</span></a>
<a href="#page-2"><span>Projects</span></a>
<a href="#page-3"><span>Skills</span></a>
</div>
</div>
</li>
<li class="nav-item box">
<a class="nav-link" style="padding-bottom: 15px;" href="#contact-me">Contact</a>
</li>
</ul>
</div>
</nav>
</section>
<!-- Banner Section -->
<section class="banner">
<div class="container">
<div class="row">
<div class=" content text-center" data-aos="zoom-in" data-aos-delay="300">
<h2>Hey!</h2>
<p>I`m <span style="font-weight: 600;">Ruchit Kalathiya</span></p>
</div>
</div>
<div class="mouse-icon" data-aos="fade-in" data-aos-delay="1000"><div class="wheel"></div></div>
</div>
</section>
<!-- About Section -->
<section class="about" id="About">
<div class="container">
<div class="row" style="overflow: hidden">
<div class="col-md-6 d-none d-sm-block px-5 pt-1" data-aos="fade-right">
<img class="img img-fluid" src="./images/about-me.jpg" alt="Profile">
</div>
<div class="col-md-6 col-12 pl-md-5 py-5" data-aos="fade-left" >
<div class="row justify-content-start pb-3">
<div class="com-md-12 heading-section" >
<h2 class="mb-4">About Me</h2>
<h3>Introduction</h3>
<p>"I'm a Programmer, Developer & Tech Enthusiat. Trying to turn my ideas into Reality"</p>
<h3 class="mb-2">Profile</h3>
<p>"I am a sophomore, Pursuing B.Tech in Information Technology and a budding software engineer."</p>
<ul class="about-info mt-4 px-md-0 px-2">
<li class="d-flex content">
<span>Name:</span>
<span>Ruchit Kalathiya</span>
</li>
<li class="d-flex content">
<span>Location:</span>
<span>Gujarat, India.</span>
</li>
<li class="d-flex content">
<span>Email:</span>
<span>[email protected]</span>
</li>
<li class="d-flex content">
<span>Phone:</span>
<span>+91-9510910211</span>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Resume Section -->
<section class="Resume edu-pro " id="Resume">
<div class="container text-center ">
<h1 class="title" id="page-1" data-aos="zoom-in">EDUCATION</h1>
<div class="row text-center">
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/university.svg" class="Edu-img">
<h5>2019-Present</h5>
<h3>B.Tech - Information technology</h3>
<span>Charotar University Of Science And Technology<br>Anand,Gujarat.</span>
</div>
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/school.svg" class="Edu-img">
<h5>2018-2019</h5>
<h3>Higher Secondary <br>Education</h3>
<span>Shree Swaminarayan Gurukul Vidyalaya<br>Surat,Gujarat.</span>
</div>
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/school.svg" class="Edu-img">
<h5>2016-2017</h5>
<h3>Secondary School <br>Education</h3>
<span>Shree Swaminarayan Gurukul Vidyalaya<br>Surat,Gujarat.</span>
</div>
</div>
<h1 class="title" id="page-2" data-aos="zoom-in">PROJECTS</h1>
<div class="row text-center">
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/project-3.svg" class="Edu-img">
<h5>2021-Present</h5>
<h3>News App</h3>
<span>It is a news app where you can see what is happening in the world.</span><br>
<a href="https://github.com/ruchitkalathiya/RNNews-App" target="_blank" rel="noopener noreferrer" class="button">Visit Project</a>
</div>
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/project-2.svg" class="Edu-img">
<h5>Jan-2021</h5>
<h3>Travel-Booking App</h3>
<span>It is an android app wherein you can book the tickets of trains and flights.</span><br>
<a href="https://github.com/ruchitkalathiya/Travel-booking-App." target="_blank" rel="noopener noreferrer" class="button">Visit Project</a>
</div>
<div class="col-md-4 Resume" data-aos="zoom-in" data-aos-delay="250">
<img src="./icons/project-1.svg" class="Edu-img">
<h5>March-2020</h5>
<h3>Wordplay Game</h3>
<span>It is a consol game which is developed in C++.</span><br><br>
<a href="https://github.com/ruchitkalathiya/Wordplay" target="_blank" rel="noopener noreferrer" class="button">Visit Project</a>
</div>
</div>
</div>
</section>
<!-- Resume -> Skills -->
<section class="Resume" >
<div class="container">
<h1 class="title text-center" id="page-3" data-aos="zoom-in">Skills</h1>
<h4 class="heading-1"data-aos="zoom-in"><span>Languages</span></h4>
<div class="d-flex flex-wrap flex-row justify-content-center">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/cpp.svg" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/java.svg" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/c.png" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/python.svg" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/html5.svg" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/css.png" height="80" width="80" alt="">
<img class="p-2 m-2" data-aos="flip-left" src="./icons/javascript.svg" height="80" width="80" alt="">
</div>
<h4 class="heading-1" data-aos="zoom-in" ><span>FrontEnd Libraries</span></h4>
<div class="d-flex flex-wrap flex-row justify-content-center">
<img class="p-2 m-2" data-aos="flip-left" height="80" width="80" src="./icons/bootstrap.png" alt="">
<img class="p-2 m-2" data-aos="flip-left" height="80" width="80" src="./icons/react.png" alt="">
</div>
<h4 class="heading-1" data-aos="zoom-in" ><span>Database</span></h4>
<div class="d-flex flex-wrap flex-row justify-content-center">
<img class="p-2 m-2" data-aos="flip-left" height="80" width="80" src="./icons/mysql.svg" alt="">
<img class="p-2 m-2" data-aos="flip-left" height="80" width="130" src="./icons/sqlite.png" alt="">
</div>
<h4 class="heading-1" data-aos="zoom-in"><span>Version controlling tools</span></h4>
<div class="d-flex flex-wrap flex-row justify-content-center">
<img class="p-2 m-2" data-aos="flip-left" height="80" width="80" src="./icons/github.svg" alt="">
</div>
</div>
</section>
<!-- Contact Section -->
<section class="Contact edu-pro">
<div class="container text-center">
<h1 class="title" id="contact-me" data-aos="zoom-in">CONTACT ME</h1>
<div class="row d-flex flex-md-row flex-wrap justify-content-center">
<div class="col contact-info" data-aos="zoom-out-up" data-aos-offset="100">
<div class="d-flex align-items-center justify-content-center" style="width: 100px; height: 100px; background: rgb(146, 62, 255); margin: 0px auto 10px; border-radius: 50%; opacity: 0.99;">
<img src="./icons/call.png" data-aos="fade-zoom-in"
data-aos-easing="ease-in-back"
data-aos-delay="100"
data-aos-offset="0" height="35" width="35" alt="">
</div>
<div>
<h3 class="mb-4">Contact</h3>
<p><a class="contact-info-detail" rel="noreferrer" target="_blank" href="tel://+919510910211">+91 9510910211</a></p>
</div>
</div>
<div class="col contact-info" data-aos="zoom-out-up">
<div class="d-flex align-items-center justify-content-center" style="width: 100px; height: 100px; background: rgb(146, 62, 255); margin: 0px auto 10px; border-radius: 50%; opacity: 0.99;">
<img src="./icons/email.png" data-aos="fade-zoom-in"
data-aos-easing="ease-in-back"
data-aos-delay="100"
data-aos-offset="0" height="35" width="35" alt="">
</div>
<div>
<h3 class="mb-4">E-Mail</h3>
<p><a class="contact-info-detail" rel="noreferrer" target="_blank" href="mailto:[email protected]">[email protected]</a></p>
</div>
</div>
<div class="col contact-info" data-aos="zoom-out-up">
<div class="d-flex align-items-center justify-content-center" style="width: 100px; height: 100px; background: rgb(146, 62, 255); margin: 0px auto 10px; border-radius: 50%; opacity: 0.99;">
<img src="./icons/github.png" data-aos="fade-zoom-in"
data-aos-easing="ease-in-back"
data-aos-delay="100"
data-aos-offset="0" height="35" width="35" alt="">
</div>
<div>
<h3 class="mb-4">Github</h3>
<p><a class="contact-info-detail" rel="noreferrer" target="_blank" href="https://github.com/ruchitkalathiya">@ruchitkalathiya</a></p>
</div>
</div>
<div class="col contact-info" data-aos="zoom-out-up">
<div class="d-flex align-items-center justify-content-center" style="width: 100px; height: 100px; background: rgb(146, 62, 255); margin: 0px auto 10px; border-radius: 50%; opacity: 0.99;">
<img src="./icons/linkedin.png" data-aos="fade-zoom-in"
data-aos-easing="ease-in-back"
data-aos-delay="100"
data-aos-offset="0" height="35" width="35" alt="">
</div>
<div>
<h3 class="mb-4">Linkedin</h3>
<p><a class="contact-info-detail" rel="noreferrer" target="_blank" href="https://www.linkedin.com/in/ruchit-kalathiya-339646198/">Ruchit Kalathiya</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section -->
<footer class="bg-dark text-center text-lg-start">
<div class="text-center p-5">
<p>
<img src="./icons/copyright.png" style="margin-top: -3;" height="20" width="20" alt="">
<span style="color: whitesmoke">2021 | Designed by <span style="font-weight: 600;">Ruchit Kalathiya</span></span>
</p>
</div>
</footer>
<!-- Smooth Scroll -->
<script src="./src/smooth-scroll.js"></script>
<script>
var scroll = new SmoothScroll('a[href*="#"]');
</script>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1000,
ease: 'ease-out-back'
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-+YQ4JLhjyBLPDQt//I+STsc9iw4uQqACwlvpslubQzn4u2UU2UFM80nGisd026JF" crossorigin="anonymous"></script>
</body>
</html>