-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
197 lines (187 loc) · 5.9 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
<!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>Bilal Mansuri - Web Developer</title>
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="section.css" />
</head>
<body>
<!-- NavBar -->
<nav class="nav-bar">
<div class="brand-name">
<a href="index.html" class="link brand-name-text">bilal</a>
</div>
<div class="nav-bar-links">
<ul>
<li>
<a href="/" class="active-link link">Home</a>
</li>
<li>
<a href="./projects.html" class="link">Projects</a>
</li>
<li>
<a href="./blogs.html" class="link">Blogs</a>
</li>
</ul>
</div>
</nav>
<header class="header">
<div class="about">
<p>HI THERE👋, I’M!</p>
<h1>Mohammad Bilal Mansuri</h1>
<p class="secondary-color highlight">FRONT-END DEVELOPER</p>
<p class="about-text">
Front-end developer focused on building webapps with pixel perfect
User Experince.
</p>
<div class="email">
<p>
Get in touch <span class="finger-pointing"> 👉</span>
<a href="mailTo:mansuribilal101@gmail.com"
>mansuribilal101@gmail.com</a
>
</p>
</div>
</div>
</header>
<!-- ABOUT ME -->
<section class="about-me">
<h2>About Me</h2>
<div class="about-me_content">
<p>
I’m currently pursuing Engineering in Electronics and Communication at
<a href="https://www.medicaps.ac.in/" class="link bold"
>Medi-Caps University</a
>
and working as a React Intern at
<a href="https://zupay.in/" class="link bold">ZuPay</a>. I was also a
web development mentor at Google Developer Student Club on my
University Campus for the session 2021-22
</p>
<p>
As a frontend developer, I enjoy learning new frameworks and
libraries. Recently I have studied Next.js which is a react framework.
When developing web-apps I aim for a beautiful, responsive product
with pixel-perfect user interface.
</p>
<p>
<span class="bold">When I'm not coding</span>, I'm probably reading a
book, or playing online games.
</p>
</div>
</section>
<!-- Technologies -->
<section class="technologies">
<h2>Technologies</h2>
<div class="technologies-content">
<p>I'm familiar with the following technologies:</p>
<div class="technologies-lists-container">
<div class="technologies-list-container">
<p class="list-container-title bold">Languages</p>
<ul>
<li>Javascript(ES6)</li>
<li>CSS/SCSS</li>
<li>HTML</li>
<li>Java</li>
</ul>
</div>
<div class="technologies-list-container">
<p class="list-container-title bold">TOOLS</p>
<ul>
<li>Git & GitHub</li>
<li>MongoDB</li>
<li>Firebase</li>
<li>Chrome Dev Tools</li>
</ul>
</div>
<div class="technologies-list-container">
<p class="list-container-title bold">FRAMEWORKS/LIBRARIES</p>
<ul>
<li>Next.js</li>
<li>React</li>
<li>Redux</li>
<li>React-Router</li>
<li>Material-UI</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Projects -->
<section class="projects">
<h2>Projects</h2>
<p>
I like to showcase my work and thus, you can see my projects hosted
online
</p>
<a href="./projects.html" class="button"> See Projects</a>
</section>
<!-- Blogs -->
<section class="projects">
<h2>Blogs</h2>
<p>
I am also working on some technical and non techincal blogs. I like to
document my journey of learning.
</p>
<a href="./blogs.html" class="button"> Read Blogs</a>
</section>
<!-- On The Web -->
<section class="socials">
<h2>On The Web</h2>
<div class="socials-container">
<div class="social-link_box">
<a
href="https://github.com/bilal-23"
target="_blank"
rel="noopener noreferrer"
><img
src="https://bilalmansuri.vercel.app/images/github.svg"
alt="github"
class="false"
/>github</a
>
</div>
<div class="social-link_box">
<a
href="https://www.linkedin.com/in/bilalmansuri"
target="_blank"
rel="noopener noreferrer"
><img
src="https://bilalmansuri.vercel.app/images/linkedin.svg"
alt="linkedin"
class="false"
/>linkedIn</a
>
</div>
<div class="social-link_box">
<a
href="https://codepen.io/bilal-23"
target="_blank"
rel="noopener noreferrer"
><img
src="https://bilalmansuri.vercel.app/images/codepen.svg"
alt="Codepen"
class="false"
/>Codepen</a
>
</div>
<div class="social-link_box">
<a
href="https://twitter.com/bilalmansuri2e"
target="_blank"
rel="noopener noreferrer"
><img
src="https://bilalmansuri.vercel.app/images/twitter.svg"
alt="github"
class="false"
/>Twitter</a
>
</div>
</div>
</section>
<footer class="footer">Developed by Bilal</footer>
</body>
</html>