-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
66 lines (52 loc) · 1.62 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
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div id="home" class="navbar"
<img id="btn" class="icon" src="icons8-menu.gif" alt="">
<div class="container" id="cont">
<h2 id="h2">M.M.B.F</h2>
<a id="u" href="index.html">Home</a>
<a href="About.html">About</a>
<a href="skills.html">Skills</a>
<a href="Project.html">My Project</a>
<a href="Contact.html">Contact</a>
</div>
</div>
</nav>
<div id="about home" class="name">
<h3>i am </h3>
<h1>Mohammad Minhaj</h1>
</div>
<div class="container2">
<div class="left-right">
<div class="left">
<h2>About<span>-Me</span></h2>
<hr>
<p>My Developer specializes in custom website programming and web development. Simply put: we make your website do what you want it to do. </p>
</div>
<div class="icon1">
<a href="https://www.facebook.com/profile.php?id=100025110422180"><img src="icons8-twitter.gif" alt=""></a>
<a href="https://www.facebook.com/profile.php?id=100025110422180"><img src="icons8-instagram.gif" alt=""></a>
<a href=""><img src="icons8-facebook_(1).gif" alt=""></a>
</div>
</div>
<div class="right">
<img src="img1.jpg" alt="">
</div>
</div>
<script>
let btn = document.getElementById('btn')
let cont = document.getElementById('cont')
btn.addEventListener('click', function() {
cont.classList.toggle('open');
})
</script>
</body>
</html>