-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (78 loc) · 3.05 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
<!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">
<link rel="icon" type="image/x-icon" href="assets/favicon2.png">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Munta Islam - Homepage</title>
</head>
<body>
<!-- Nav Bar -->
<header>
<a class="logo" href="">
<0^0>
</a>
<nav class="topnav" id="myTopnav">
<button class="hamburger" type="button">
<span class="hamburger__bar"></span>
<span class="hamburger__bar"></span>
<span class="hamburger__bar"></span>
</button>
<ul class="nav__links">
<li><a href="#about">About</a></li>
<li><a href="blog/">Blog</a></li>
<li><a href="cv/">CV</a></li>
</ul>
</nav>
<div id="menuOverlay" class="menu-overlay">
<ul class="menu-overlay__links">
<li><a href="#about">About</a></li>
<li><a href="blog/">Blog</a></li>
<li><a href="cv/">CV</a></li>
</ul>
</div>
</header>
<!-- Landing Page -->
<div class="landing">
<div>
<h3>Hi! My name is</h3>
<h1>Muntasirul Islam 👋</h3>
<h2>Developer and Student 👨🏽💻📚</h3>
</div>
<img src="assets/munta_wave.png" alt="avatar" width="374" height="664">
</div>
<div style="position: absolute; top: 92%" id="about"></div>
<!-- About -->
<div class="about">
<div class="image">
<img src="assets/profile.jpg" alt="">
</div>
<div class="text">
<h1>About Me</h1>
<p>Second-year computer science student at Toronto Metropolitan University. I strive for a
disciplined work ethic and relentlessly pursue my goals as a programmer and aspiring software developer.
While I've
enjoyed creating numerous personal pet projects, my sights are set on publishing a significant
open-source project
in the near future. </p>
</div>
<div class="image">
<img src="assets/munta_side_look.png" alt="">
</div>
</div>
<!-- Projects -->
<div class="projects">
<h1>Highlighted Projects</h1>
<div>
<div class="github-repo-card" data-username="muntalee" data-repo="pytetris"></div>
<div class="github-repo-card" data-username="muntalee" data-repo="goodnotes-email-automation"></div>
<div class="github-repo-card" data-username="muntalee" data-repo="PokemonJavaGUI"></div>
<div class="github-repo-card" data-username="muntalee" data-repo="muntalee.github.io"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>