-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
241 lines (215 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
234
235
236
237
238
239
240
241
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" type="image/png" href="./images/favicon.png" />
<!-- Put your site title here -->
<title>
nawal
</title>
<meta name="description" content="Add small description of yourslef.">
<!-- Add some coding keywords below, Ex: (React, CSS etc) -->
<meta name="keywords" content="Put your name, skills and some coding keywords" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div id="particles-js"></div>
<!-- ***** Header ***** -->
<header class="header" role="banner" id="top">
<div class="row">
<nav class="nav" role="navigation">
<ul class="nav__items">
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item"><a href="#work" class="nav__link">Experience</a></li>
<li class="nav__item"><a href="#clients" class="nav__link">Blogs</a></li>
<li class="nav__item">
<a href="#contact" class="nav__link">Contact</a>
</li>
</ul>
</nav>
</div>
<div class="header__text-box row">
<div class="header__text">
<h1 class="heading-primary">
<!-- Replace the following name with your name -->
<span>AYUSH NAWAL</span>
</h1>
<!-- Put a small paragraph about yourself -->
<p>Software Developer based in Bangalore,India</p>
<ul>
<li class="social_links">
<a href="https://github.com/ayushnawal" title="Github Profile">
<img src="./images/github.svg" class="footer__social-image" alt="Github">
</a>
</li>
<li class="social_links">
<a href="https://www.linkedin.com/in/ayushnawal">
<img src="./images/linkedin.svg" title="Linkedin Profile" class="footer__social-image" alt="Linkedin">
</a>
</li>
<li class="social_links">
<a href="https://www.instagram.com/ayush.nawal/" title="Instagram Profile">
<img src="./images/instagram.svg" class="footer__social-image" alt="Instagram" style="background-color: #fff;">
</a>
</li>
<li class="social_links">
<a href="https://www.facebook.com/ayush.nawal.457/" title="Facebook Profile">
<img src="./images/facebook.svg" class="footer__social-image" alt="Facebook" style="background-color: #fff;">
</a>
</li>
</ul>
<a href="#contact" class="btn btn--pink">Get In Touch</a>
</div>
</div>
</header>
<main role="main">
<!-- ***** About ***** -->
<section class="about" id="about">
<div class="row">
<h2>About Me</h2>
<div class="about__content">
<div class="about__text">
<!-- Replace the below paragraph with info about yourself -->
<p>
Hello!, I am an electronics undergrad at Indian Institute of Technology, Roorkee. FinTech is my major interest presently so i love writing software, reading financial analysis (investment management and research primarily).<br>
<br>
When not reading or programming, I enjoy football, competitive video gaming and listening G-Eazy. Excited for the times ahead!
</p>
<!-- Provide a link to your resume -->
<a href="./images/resume.pdf" class="btn">My Resume</a>
</div>
<div class="about__photo-container">
<!-- Add a nice photo of yourself -->
<img class="about__photo" src="./images/nawal.jpg" alt="" />
</div>
</div>
</div>
</section>
<!-- ***** Work ***** -->
<section class="work" id="work">
<div class="row">
<h2>Experience</h2>
<div class="work__boxes">
<!-- Each div with the work__box class is a project. -->
<div class="work__box">
<div class="work__text">
<h3>Amazon</h3>
<p>
Software Development Intern <br>
<br>
Automated the processing of millions of manifest and invoices
messages amazon receives per day which comes on
transportation-finance systems.
</p>
<ul class="work__list">
<li>AWS</li>
<li>DynamoDB</li>
<li>SQS</li>
<li>Boto</li>
</ul>
</div>
<div class="work__image-box">
<img src="./images/aws.png" class="work__image" alt="amazon" />
</div>
</div>
<div class="work__box">
<div class="work__text">
<h3>Alumni Portal</h3>
<p>
Front End Lead <br>
<br>
I lead the team of front-end developers
working under the Dean of Resources and
Alumni Affairs, to develop and maintain
the products of alumni.iitr.ac.in.
</p>
<ul class="work__list">
<li>React</li>
<li>Redux</li>
<li>CSS</li>
</ul>
<div class="work__links">
<a href="https://alumni.iitr.ac.in" class="link__text">
Visit Site <span>→</span>
</a>
</div>
</div>
<div class="work__image-box">
<img src="./images/alumni.png" class="work__image" alt="alumni" />
</div>
</div>
</div>
</div>
</section>
<!-- ***** Clients ***** -->
<section class="client" id="clients">
<div class="row">
<h2>Blogs</h2>
<div class="work__text">
<p>HELLO AGAIN!<br>
<br>
I have always wanted to start blogging. Writing a blog forces you to teach yourself what you don’t know and to articulate what you do know.Sadly it hasn't materialised yet. I will soon start updating here (Hopefully! XD)
</p>
</div>
</div>
</section>
</main>
<!-- ***** Contact ***** -->
<section class="contact" id="contact">
<div class="row">
<h2>Get in Touch</h2>
<div class="contact__info">
<p>
Do you want to ask some questions? or have some advice for me
or just want to say "Hi 👋" in any case feel free to let me know 😊. The quickest way to reach out to
me is via dropping a message below.
</p>
<!-- Replace the email with yours -->
<a href="mailto:[email protected]" class="btn">[email protected]</a>
</div>
</div>
</section>
<!-- ***** Footer ***** -->
<footer role="contentinfo" class="footer">
<div class="row">
<!-- Update the links to point to your accounts -->
<h3>Other Whereabouts</h3>
<ul class="footer__social-links">
<li class="footer__social-link-item">
<a href="https://github.com/ayushnawal" title="Github Profile">
<img src="./images/github.svg" class="footer__social-image" alt="Github">
</a>
</li>
<li class="footer__social-link-item">
<a href="https://www.linkedin.com/in/ayushnawal">
<img src="./images/linkedin.svg" title="Linkedin Profile" class="footer__social-image" alt="Linkedin">
</a>
</li>
<li class="footer__social-link-item">
<a href="https://www.instagram.com/ayush.nawal/" title="Instagram Profile">
<img src="./images/instagram.svg" class="footer__social-image" alt="Instagram" style="background-color: #fff;">
</a>
</li>
<li class="footer__social-link-item">
<a href="https://www.facebook.com/ayush.nawal.457/" title="Facebook Profile">
<img src="./images/facebook.svg" class="footer__social-image" alt="Facebook" style="background-color: #fff;">
</a>
</li>
</ul>
<!-- If you give me some credit by keeping the below paragraph, will be huge for me 😊 Thanks. -->
<p>
© 2020 - AYUSH NAWAL | <a href="https://github.com/ayushnawal" class="link">nawal</a>.
</p>
</div>
</footer>
<a href="#top" class="back-to-top" title="Back to Top">
<img src="./images/arrow-up.svg" alt="Back to Top" class="back-to-top__image"/>
</a>
<script src="./index.js"></script>
<script src="particles.js"></script>
<script src="app.js"></script>
</body>
</html>