-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
273 lines (271 loc) · 13.5 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
263
264
265
266
267
268
269
270
271
272
273
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.3/tiny-slider.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.2/animate.min.css">
<link href='https://fonts.googleapis.com/css?family=Bodoni Moda' rel='stylesheet'>
</head>
<body>
<header>
<div class="overlay">
<nav class="navbar navbar-expand-md ">
<a href="#home" class="navbar-brand">Portfo<span>lio</span></a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarToggle">
<span class="navbar-toggler-icon my-toggler"><i class="fas fa-bars fa-1x"></i></span>
</button>
<div class="collapse navbar-collapse" id="navbarToggle">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a href="#about" class="nav-link">About</a>
</li>
<li class="nav-item">
<a href="#expertise" class="nav-link">Expertise</a>
</li>
<li class="nav-item">
<a href="#skills" class="nav-link">Skills</a>
</li>
<li class="nav-item">
<a href="#Projects" class="nav-link">Projects</a>
</li>
<li class="nav-item">
<a href="#contact" class="nav-link">Contact</a>
</li>
</ul>
</div>
</nav>
</div>
<div class="home" id="home">
<h2>Hello, my name is</h2>
<br>
<h1>Biswas Singodia</h1>
<br>
<h3>And I'm a </h3><span class="typing"></span>
</div>
<div class="img1">
<img src="images/preview.png" alt="" class="w-50 img-fluid">
</div>
</header>
<section class="about" id="about">
<div class="about-me">
<h1 class="fancy"><span>About Me</span> </h1>
</div>
<div class="container">
<div class="row">
<div class="col-md-5">
<img src="images/about.jpeg" alt="" class="img-fluid about-img">
</div>
<div class="col-md-7">
<div class="description">
<h2>I'm Biswas Singodia and I'm a <span class="typing2"></span></h2>
<p>I am a Computer Science Student with holistic knowledge of website development,design and coding.
I intend to be part of an organisation where I can develop my techinical and management skills and make
the best use of it to grow the organisation. I look forward to reaching new heights as I go along this path.
</p>
<a href="https://drive.google.com/file/d/1dIyl2u_7CY79h6Y_Awp1xCWH1V56Yj-y/view?usp=sharing">Download CV</a>
</div>
</div>
</div>
</div>
</section>
<section class="expertise" id="expertise">
<div class="container">
<div class="expert">
<h1>Expertise</h1>
</div>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col col-sm-1">
<div class="card ">
<div class="card-body">
<i class="fas fa-paint-brush"></i>
<h5 class="card-title">Web Design</h5>
<p class="card-text">Web design encompasses many different skills and disciplines in the production and maintenance of websites. The different areas of web design include web graphic design; user interface design; authoring, including standardised code and proprietary software; user experience design; and search engine optimization. </p>
</div>
</div>
<div class="card ">
<div class="card-body">
<i class="fas fa-chart-line"></i>
<h5 class="card-title">Programming</h5>
<p class="card-text">Computer programmer skills are methods and processes that provide computers with instructions on what actions to perform. Collectively known as “code,” these instructions are written by computer programmers to solve problems or perform specific tasks.</p>
</div>
</div>
<div class="card ">
<div class="card-body">
<i class="fas fa-code"></i>
<h5 class="card-title">Full Stack Developer</h5>
<p class="card-text">A full stack web developer is a person who can develop both client and server software.
In addition to mastering HTML and CSS, he/she also knows how to:
program a browser,program a server and program a database </p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="skills" id="skills">
<div class="container">
<div class="my-skill">
<h1>My Skills</h1>
</div>
<div class="row">
<div class="col-md-5 creative">
<h2>
My creative skills & experiences
</h2>
<p>Creativity is an invaluable trait for a developer or a programmer. The different perspective to look towards
a code or a problem and solving it the most efficient and fastest way is something that can only be learnt thorugh experience and
a lot of practice. Creative Thinking is a way to develop novel or unorthodox solutions that do not depend wholly on past
or current solutions.
</p>
</div>
<div class="col-md-7 sk">
<h5>PYTHON</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:70%"></div>
</div>
<div class="space">
<h5>HTML</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:90%"></div>
</div>
<h5>CSS</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:80%"></div>
</div>
<h5>JAVASCRIPT</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:60%"></div>
</div>
<h5>BOOTSTRAP</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:60%"></div>
</div>
<h5>MySQL</h5>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-danger" role="progressbar" style="width:50%"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="Projects" id="Projects">
<div class="container">
<div class="row">
<div class="col-sm-12">
<div class="my-project">
<h2>My Projects</h2>
<h4>What have done so far?</h4>
</div>
</div>
</div>
</div>
<div class="my-slider">
<div class="item rounded" >
<img src="images/1_TzbmJ5RWXeyjnT1ZuG664A.png" alt="" class="img-fluid">
<div class="place-about">
<h3 class="text-center"><a href="https://github.com/PhantomCoder2/Hangman">Hangman Game</a></h3>
<h4 class="text-center">A game developed using Javascript</h4>
</div>
</div>
<div class="item">
<img src="images/istock_gravity.jpg" alt="">
<div class="place-about">
<h3 class="text-center"><a href="https://github.com/PhantomCoder2/Space">Space</a></h3>
<h4 class="text-center">Check out your weights on planets</h4>
</div>
</div>
<div class="item">
<img src="images/turnefferesort_0013_1.jpg" alt="">
<div class="place-about">
<h3 class="text-center"><a href="https://github.com/PhantomCoder2/Tourism">Tourism</a></h3>
<h4 class="text-center">SPA on amazing island spots</h4>
</div>
</div>
<div class="item">
<img src="images/unnamed.png" alt="">
<div class="place-about">
<h3 class="text-center"><a href="https://github.com/PhantomCoder2/Proj2">Anime</a></h3>
<h4 class="text-center">Multi-page site</h4>
</div>
</div>
<div class="item">
<img src="images/Fotolia_84625850_XS.jpg" alt="">
<div class="place-about">
<h3 class="text-center">Ongoing</h3>
<h4 class="text-center">Working on something new</h4>
</div>
</div>
</div>
</section>
<section class="contact" id="contact">
<div class="container">
<div class="row">
<div class="contact-me">
<h2>Contact Me</h2>
</div>
<div class="col-md-6">
<div class="get">
<h4>Get In Touch</h4>
</div>
<div class="details">
<i class="fas fa-user "></i>
<div class="name">
<h3>Name</h3>
<h4>Biswas Singodia</h4>
</div>
</div>
<div class="details">
<i class="fas fa-map-marker-alt "></i>
<div class="name">
<h3>Address</h3>
<h4>Siliguri</h4>
</div>
</div>
<div class="details">
<i class="fas fa-envelope-open-text"></i>
<div class="name">
<h3>E-Mail</h3>
<h4>[email protected]</h4>
</div>
</div>
</div>
<hr class="line" style="display:none">
<hr class="line2" style="display:none">
<div class="col-md-6">
<div class="message"><h3>Message Me</h3></div>
<form action="#">
<div class="name-mail">
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
</div>
<div class="subject">
<input type="text" placeholder="Subject">
</div>
<div class="text">
<textarea name="Message" id="" cols="30" rows="10" placeholder="Message.."></textarea>
</div>
<div class="send">
<a href="mailto:[email protected]" class="submit">Send Message</a>
</div>
</form>
</div>
</div>
</div>
</section>
<footer>
Created by <span>Biswas Singodia</span>|<span class="far fa-copyright"></span> 2021 All rights reserved.</span>
</footer>
<script src="typed.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<script src="https://kit.fontawesome.com/2d72685602.js" crossorigin="anonymous"></script>
<script src="script.js"></script>
</body>
</html>