-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
62 lines (57 loc) · 2.72 KB
/
about.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
<!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">
<title>About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">
<p>Kamrul Codes</p>
</div>
<ul class="list nav-pills">
<li class="inline-list-item non-bullet-list">
<a class="link" href="/index.html">Home</a>
</li>
<li class="inline-list-item non-bullet-list">
<a class="link active-link" href="/">About</a>
</li>
<li class="inline-list-item non-bullet-list">
<a class="link" href="/projects.html">Projects</a>
</li>
<li class="inline-list-item non-bullet-list">
<a class="link" href="/blogs.html">Blogs</a>
</li>
</ul>
</nav>
<section class="section">
<div class="container">
<h1>About</h1>
<p>Hello, My name is Kamrul Hasan Dipta and I'm from Bangladesh. I am in Front End Web Development.I am a Non-CSE graduate who loves coding and problem solving. I am commited to learning and self-development to achieve the best.</p>
<p>I create responsive and interactive websites and web apps on a daily basis in order to grow me and learning new stuff as a developer. I also enjoy writing technical blogs and sharing my journey of learning.</p>
<p><strong>My current tech stacks are HTML, CSS, JAVASCRIPT and REACT. </strong> I also actively surf the web for new resources out there that definitely helps a lot while working on a project.</p>
<p>I am also interested in MERN Stack, Open Source, DevOps and Web 3.0. My hobbies are playing and watching cricket, reading blogs about tech and self help books, watching movies and web series.</p>
<a class="link primary-link" href="/">DOWNLOAD CV</a>
</div>
</section>
<footer class="footer-section">
<div class="container">
<h1>My Social Media Presence</h1>
<ul class="list social-links">
<li class="inline-list-item non-bullet-list">
<a class="link" href="https://github.com/Dipta437">Github</a>
</li>
<li class="inline-list-item non-bullet-list">
<a class="link" href="https://twitter.com/kamrul_dipta">Twitter</a>
</li>
<li class="inline-list-item non-bullet-list">
<a class="link" href="https://www.linkedin.com/in/kamrul-hasan-dipta-59b95313a/">LinkdIn</a>
</li>
</ul>
</div>
</footer>
</body>
</html>