Skip to content

Commit e8ea967

Browse files
committed
modified html structure
1 parent 2da8ba7 commit e8ea967

15 files changed

+488
-416
lines changed

Towfiqul_Islam.pdf

-226 KB
Binary file not shown.

Towfiqul_Islam.png

510 KB
Loading

Towfiqul_Islam_v3_1.pdf

100644100755
File mode changed.
File renamed without changes.
File renamed without changes.
File renamed without changes.

award-achievement.html

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<div class="w3-container">
2+
<h5 class="w3-opacity-min"><b>Team Award as Coach</b></h5>
3+
<p>
4+
● IIUC IUPC 2017, my team CJC_TEAM_1971 Ranked 2nd Position. <a href="https://goo.gl/DJnuAy">https://goo.gl/DJnuAy</a>
5+
<br>
6+
● EDU Programming Contest 2018 , my team CJC_TEAM_1971 Ranked 5th position. <a
7+
href=" https://goo.gl/JTPNuu">https://goo.gl/JTPNuu</a>
8+
</p>
9+
</div>
10+
11+
<div class="w3-container">
12+
<h5 class="w3-opacity-min"><b>ACM Profiles</b></h5>
13+
<p>
14+
● 5th Position on CSE Week Programming Contest 2016.
15+
<a href="https://algo.codemarshal.org/contests/cseweek-2016/standings">
16+
https://algo.codemarshal.org/contests/cseweek-2016/standings</a>
17+
<br>
18+
● Participated in the divisional onsite contest: IIUC IUPC 2015, 2016, USTC IUPC 2016
19+
Solved 500+ problems in various online judge. <br>
20+
● Virtual Judge ID: UVA: <a href="https://uhunt.onlinejudge.org/id/448714">448714</a>,
21+
CF: <a href="http://codeforces.com/profile/laziestcoder">laziestcoder</a>,
22+
HR: <a href="https://www.hackerrank.com/Laziest_Coder?hr_r=1">Laziest_Coder</a>
23+
</p>
24+
</div>
25+
26+
<hr>

education.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<div class="w3-container">
2+
<h5 class="w3-opacity-min"><b>International Islamic University Chittagong (IIUC)</b></h5>
3+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
4+
B.Sc. in Computer Science & Engineering | 2014 - 2018</h6>
5+
</div>
6+
7+
<div class="w3-container">
8+
<h5 class="w3-opacity-min"><b>Government City College, Chittagong</b></h5>
9+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
10+
Higher Secondary Certification | 2011 - 2013</h6>
11+
</div>
12+
13+
<div class="w3-container">
14+
<h5 class="w3-opacity-min"><b>Government Muslim High School, Chittagong</b></h5>
15+
<h6 class="w3-text-indigo"><i class="fa fa-calendar fa-fw w3-margin-right"></i>
16+
Secondary School Certification | 2005 - 2010</h6>
17+
</div>
18+
19+
<hr>

index.html

Lines changed: 35 additions & 415 deletions
Large diffs are not rendered by default.

js/towfiq.js

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
$(document).ready(function () {
1+
$(document).ready(function yearOfExp() {
22

33
var joiningDate = "January, 1, 2018";
44

@@ -49,3 +49,31 @@ var DateDiff = {
4949
return d2.getFullYear() - d1.getFullYear();
5050
}
5151
}
52+
53+
function includeHTML(fileName) {
54+
var z, i, elmnt, file, xhttp;
55+
/* Loop through a collection of all HTML elements: */
56+
z = document.getElementsByTagName("*");
57+
for (i = 0; i < z.length; i++) {
58+
elmnt = z[i];
59+
/*search for elements with a certain atrribute:*/
60+
file = elmnt.getAttribute(fileName);
61+
if (file) {
62+
/* Make an HTTP request using the attribute value as the file name: */
63+
xhttp = new XMLHttpRequest();
64+
xhttp.onreadystatechange = function() {
65+
if (this.readyState == 4) {
66+
if (this.status == 200) {elmnt.innerHTML = this.responseText;}
67+
if (this.status == 404) {elmnt.innerHTML = "Page not found.";}
68+
/* Remove the attribute, and call this function once more: */
69+
elmnt.removeAttribute(fileName);
70+
includeHTML();
71+
}
72+
}
73+
xhttp.open("GET", file, true);
74+
xhttp.send();
75+
/* Exit the function: */
76+
return;
77+
}
78+
}
79+
}

0 commit comments

Comments
 (0)