-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintro.html
47 lines (47 loc) · 1.92 KB
/
intro.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
<!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="stylesheet" href="style.css">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="blog.css">
<title>Introduction</title>
</head>
<body>
<div class="container">
<div class="sidebar sidebarGo">
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/intro.html" target="_ablank">My Intro</a></li>
<li><a href="/service.html">Servies</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">Md Wasim Akram</div>
<div class="about">Developer, Progammer, Circketer</div>
<div class="moreabout">I am a Developer and live in Kolkata , I love to play cricket and also love to watch matches of our national team & domestic team. </div>
<div class="buttons">
<a href="/cv.pdf" target="_main"><button>Download CV</button></a>
<a href="/contact.html"> <button>Contact Me</button></a>
</div>
</div>
<div class="devPic"><img src="dev.jpg" alt=""></div>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>