-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
278 lines (217 loc) · 8.82 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
274
275
276
277
278
<!DOCTYPE html>
<html>
<head>
<title>
Demo of Portfolio
</title>
<link rel="stylesheet" type="text/css" href="practise.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="font/css/all.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light sticky-top my-nav">
<div class="container">
<a class="navbar-brand" href="#">
<img src="logo.png" style="height: 80px; width: 60px;">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav">
<i class="fas fa-bars text-white"></i>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link text-white text-uppercase " href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link text-white text-uppercase" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link js-scroll text-white text-uppercase " href="#hobbies">Hobbies</a>
</li>
<li class="nav-item">
<a class="nav-link text-white text-uppercase " href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="bg" id="#home">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center text-white ">
<h1 class="pb-4 text-uppercase">Hi! I am Takia ESha </h1>
<p class="pb-4">First, solve the problem. Then, write the code.<br> – John Johnson </p>
<button class=" bg-btn">Hire me as a Programmer </button>
</div>
</div>
</div>
</div>
<div class="about pt-5" id="#about">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3>About Myself</h3>
<p class="text-muted"> Here is a glimpse about myself </p>
</div>
</div>
<div class="row pt-5">
<div class="col-lg-6 text-center">
<img src="images/esha.jpeg" style="height: 550px; width: 500px;" />
</div>
<div class="col-lg-6 ">
<h4 class="text-justify">
Hello welcome to my website!<br>
Currently I am doing my under-graduation in Electronis & Communication Engineering from HSTU.<br>
During this technology blasting era, we can not think our daily schedule without internet. Making a machine understandable what I want with command
is the most exciting thing I found early. During pandemic it was proven again that web is the most efficient way for communication.
So far, I fell in love with the programming language C plus plus. Diving into this world, I have learnt many topics whcih helps me to understand
computer architecture without getting bored! I always believe in hard work, endeavour to have something beyond dream. <br>
I am familiar with programming languages like C,(good at) C++, java.Currently I am Learning Data structures and algorithms. Hvae experience in trouble shooting,technical support fundamentals.
I do competitive programming, participated in national contests like NGPC, ICPC, IUPC etc.
Moderate knowledge in HTML,CSS,PHP etc.
<br>
And now here I am ! Learning is a continuous path, so adding skills to bucket help one's to gather more experience. <br>
<br>
</h4>
</div>
</div>
</div>
</div>
<div class="hobby pt-5" id="#hobbies">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h3>My Hobbies</h3>
<p class="text-muted">Apart from this, here are some of my interests </p>
</div>
</div>
<div class="row pt-5">
<div class="col-lg-4 col-md-6 col-sm-12 pt-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/gardening.jpeg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Gardening</h5>
<p class="card-text">During my busy schedule, I feel so relaxed and soothing with my plants </p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 pt-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/reading.jpeg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Reading Books</h5>
<p class="card-text"> Books are anoother soul of mine. Apart from coding, I read lots of books of all sections </p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 pt-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/photo.jpeg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Photography</h5>
<p class="card-text"> I would like to capture moments which can relate me near to nature .</p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
</div>
<div class="row pt-5">
<div class="col-lg-4 col-md-6 col-sm-12 pt-4 pb-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/Travelling.jpeg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Travelling</h5>
<p class="card-text"> Exploring new places helps to enhale more energy get back to work.</p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 pt-4 pb-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/draw.jpg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Drawing</h5>
<p class="card-text"> Sketching is one of my favourite which helps one to observe each object in a new angle </p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-12 pt-4 pb-4">
<div class="card" style="width: 18rem;">
<img class="card-img-top" src="images/gaming.jpg" alt="Card image cap"
style="height: 150px; width: 285px;">
<div class="card-body">
<h5 class="card-title">Gaming</h5>
<p class="card-text"> It is less to describe to have fun while gaming </p>
<a href="#" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="contact pt-5 pb-4" id="#contact">
<div class="container">
<div class="row">
<div class="col-lg-6 loc">
<p class="display-4 pt-4">LOCATION</p>
<p class="">Get Directions to Our Event Center</P>
<p class="display-4 ">ADDRESS:</p>
<p class=""> 12/B block, Monem tower, Free school street road <br>Dhaka,Bangladesh</p>
<div class="row">
<div class="col-lg-4">
<h1 class="text">Phone:</h1>
<p class="text"> +08801728657945 </p>
</div>
<div class="col-lg-4">
<h1 class="text">Email:</h1>
<p class=""> [email protected]</p>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<h1 class="text">Working Hours:</h1>
<p class="text">9.00 am to 8.00 pm</p>
</div>
</div>
</div>
<div class="col-lg-6 form pt-4">
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Your Name</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="">
</div>
<div class="form-group">
<label for="exampleFormControlInput1"> Your Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1"
placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Your Messege</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
</form>
<button class="btn-info"> Send Messege </button>
</div>
</div>
</div>
</div>
<footer class="footer bg-dark" style="
padding: 2%;
">
<div class="container text-center d-flex justify-content-center">
<p class="text-white m-0">Copyright © Esha's Website
</p>
</div>
</footer>
<script type="text/javascript" src="js/jquery-3.5.1.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>