-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·83 lines (68 loc) · 2.76 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Md. Muktadirul Islam</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<script>
function startTime() {
document.getElementById('txt').innerHTML =new Date().toString("h:mm:ss tt");
var t = setTimeout(startTime, 500);
}
$(function(){
$("#nav").load("nav.html");
$("#head").load("header.html");
$("#footer").load("footer.html");
});
</script>
<style media="screen">
.container {
background-color: #e0f2dc;
}
</style>
<body onload="startTime()">
<div id="head">
</div>
<div id="nav"></div>
<br>
<br>
<br>
<div class="container">
<p class="col-sm-9"><i><b>
"Life is beautiful, as long as it consumes you. When it is rushing through you, destroying you, life is gorgeous, glorious. It’s when you burn a slow fire and save fuel, that life’s not worth having. "
-D. H. Lawrence
</b></i></p>
<div class="row">
<div class="col-sm-2">
</div>
<div class="col-sm-9">
<h1>Hi there!</h1>
<p>It is great to have your attention on my github! I am Md. Muktadirul Islam and living
in Dhaka Bangladesh. I previously served as a Data Engineer at
<a href="https://ekkbaz.com/business">Ekkbaz</a> Since December 2017 to Semptember 2018.
I persued my Bachelor of Science (B.Sc.) from the <a href="http://cse.uiu.ac.bd/">Department of Computer Science and
Engineering</a> of <a href="http://www.uiu.ac.bd/">United International University</a> Semptember, 2017.
</p>
<p>
I am interested in learning new algorithms, Problem solving techniques that brings effective changes on my working output & real life. I do
belive that today's performence was not best and I am not happy with what I have acchived today. So, I want to perform more better
than today.
</p>
<p>
Other than my office duties & home stuffs, I love to cook, play Table Tennis, Cricket, Badminton in my leisure time.
I love to explore new places which lead me to travel govment holiday! And of course, there are video
games like CS, COD when I feel too lazy to go out.</p>
</div>
<div class="col-sm-1">
<img src="image/Raian_New.png" style="height: 300px;width: 275px">
</div>
</div>
</div>
<div id="footer">
</div>
</body>
</html>