-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
233 lines (232 loc) · 8.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
href="https://fonts.googleapis.com/css?family=Poppins:400,600,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="./dist/css/main.css" />
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"
></script>
<link
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU"
crossorigin="anonymous"
/>
<title>Rohit Chavan - Front-end Developer</title>
</head>
<body>
<div class="wrapper">
<div class="blur"></div>
<header class="header_main" id="homepage">
<nav>
<div class="menu-icon"><i class="fa fa-bars fa-2x"></i></div>
<div class="logo">Rohit Chavan</div>
<div class="menu">
<ul>
<li><a href="#homepage">Home</a></li>
<li><a href="#portfolio">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="overlay">
<h1>Hello! I'm <span>Rohit Chavan.</span></h1>
<h1>I'm a Front-end developer.</h1>
<a href="#portfolio" class="btn">Check my work</a>
</div>
</header>
<main>
<header class="header_about" id="about">
<h1>About me</h1>
<p>Always excited to learn, design and build new things.</p>
</header>
<section class="section_container">
<div class="section_about">
<div class="box">
<figure class="figure_about">
<img src="./dist/img/code.png" alt="code image" />
</figure>
<h2>Code</h2>
<p>
I love to write code from scratch that is clean, maintainable
and easy to read.
</p>
</div>
<div class="box">
<figure class="figure_about">
<img src="./dist/img/design.png" alt="design image" />
</figure>
<h2>Design</h2>
<p>
I focus on creating Minimalist Designs with my code. Also,
provide good user experience.
</p>
</div>
<div class="box">
<figure class="figure_about">
<img src="./dist/img/responsive.png" alt="responsive image" />
</figure>
<h2>Responsive</h2>
<p>
I mainly work on Responsive Design to provide good browsing
experience across all devices.
</p>
</div>
</div>
<!-- section_about ends here -->
<div class="section_profile">
<div class="info">
<h3 class="profile_heading">Who am I ?</h3>
<p class="profile_para">
I'm a front-end developer based in Mumbai, India. I primarily
focus on planning, design and implementation aspect by writing
clean and simple code which is easily readable. Always looking
out for new skills to learn in order to keep myself updated with
the technology. Outside of learning about the Web, I enjoy
watching movies (especially Sci-fi and Action) and spend time
with my family and friends.
</p>
</div>
<div class="skills">
<h3 class="profile_heading">My Skills:-</h3>
<span>• HTML5</span> <span>• CSS3(Flexbox, CSS-Grid)</span>
<span>• Sass</span> <span>• JavaScript (ES6)</span>
<span>• React</span> <span>• jQuery</span>
<span>• Git | GitHub</span>
</div>
</div>
<!-- section_profile ends here -->
</section>
<header class="header_portfolio" id="portfolio">
<h1>Portfolio</h1>
<p>Some of my Work.</p>
</header>
<section class="portfolio_container">
<div class="portfolio_grid">
<article class="card">
<div class="card_image">
<a
href="https://github.com/rohitvc/GuessMyNumber"
target="_blank"
>
<img
src="./dist/img/game.png"
alt="Javascript Game"
class="card_img"
/>
</a>
</div>
<div class="card_description">
<h3>Javascript Game</h3>
<p>
I made this game using HTML, CSS and Javascript while
learning.
</p>
<a
href="https://github.com/rohitvc/GuessMyNumber"
target="_blank"
class="card_github"
>Github <i class="fab fa-github"></i>
</a>
</div>
</article>
<article class="card">
<div class="card_image">
<a href="https://codepen.io/rohitvc/pen/RqNBrd" target="_blank">
<img
src="./dist/img/documentation_page.png"
alt="documentation page"
class="card_img"
/>
</a>
</div>
<div class="card_description">
<h3>Documentation Page</h3>
<p>
I made this documentation page while i was learning to code.
</p>
<a
href="https://codepen.io/rohitvc/pen/RqNBrd"
target="_blank"
class="card_github"
>Codepen <i class="fab fa-codepen"></i>
</a>
</div>
</article>
</div>
</section>
<header class="header_contact" id="contact">
<h1>Contact</h1>
<p>Have any question or want to work together?</p>
</header>
<section class="form_container">
<div class="form_grid">
<div class="email_side">
<h3>Let's get in touch</h3>
<div class="email">
<i class="fas fa-envelope"></i
><span>[email protected]</span>
</div>
<div class="address">
<i class="fas fa-map-marker-alt"></i> <span>Mumbai, India</span>
</div>
</div>
<div class="form_side">
<form
action="mailto:[email protected]"
method="POST"
enctype="text/plain"
target="_blank"
>
<input type="text" placeholder="Name" id="name" required />
<input type="email" placeholder="Email" id="email" required />
<textarea
id="message"
cols="30"
rows="8"
placeholder="Message"
required
></textarea>
<button id="submit" type="submit">Submit</button>
</form>
</div>
</div>
</section>
</main>
<footer class="footer">
<div class="footer_container">
<p>© 2018 <span>Rohit Chavan</span></p>
<p>
<a href="#homepage">Home |</a> <a href="#portfolio">Project |</a>
<a href="#about">About |</a> <a href="#contact">Contact</a>
</p>
</div>
<div class="social">
<a href="https://github.com/rohitvc" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/rohitvc/" target="_blank">
<i class="fab fa-linkedin-in"></i>
</a>
</div>
</footer>
</div>
<!-- main div ends here -->
<script src="./dist/js/index.js"></script>
</body>
</html>