forked from tao73bot/Portfolio-Web-Tech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Comatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MD. Taohidul Islam</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div class="container">
<div class="sidebar sidebarGo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/intro.html">My Info</a></li>
<li><a href="/services.html">Services</a></li>
<li><a href="/blog.html">Blog</a></li>
<li><a href="/contact.html">Contact Me</a></li>
</ul>
</nav>
</div>
<div class="main">
<div class="hamburger">
<img class="ham" src="Ham.png" alt="" width="23px">
<img class="cross" src="Cross.png" alt="" width="23px">
</div>
<div class="infoContainer">
<div class="devInfo">
<div class="hello">Hi I am</div>
<div class="name">Taohidul Islam</div>
<div class="about">A Student Of Software Engineering At Shahjalal University Of Science & Technology
</div>
<div class="btn">
<a href="/CV.txt" target="_blank"><button>Download CV</button></a>
<a href="/contact.html"><button>Contact Me</button></a>
</div>
</div>
<div class="devPic"><img src="dev6.png" alt="Taohidul"></div>
</div>
</div>
<ul class="social-icons">
<li><a href="https://web.facebook.com/profile.php?id=100047133741826" target="_blank"><i class="fab fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/md-taohidul-islam-914852264/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://github.com/tao73bot" target="_blank"><i class="fab fa-github"></i></a></li>
</ul>
</div>
<script src="script.js"></script>
</body>
</html>