-
Notifications
You must be signed in to change notification settings - Fork 0
/
Project.html
60 lines (49 loc) · 1.43 KB
/
Project.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<title></title>
</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="Project" class="container4">
<h2>My Project </h2>
<hr>
<div class="project">
<img src="images (1).jpeg" alt="">
<img src="images (2).jpeg" alt="">
<img src="images (3).jpeg" alt="">
<img src="images (4).jpeg" alt="">
<img src="images (5).jpeg" alt="">
<img src="images (6).jpeg" alt="">
<img src="images (7).jpeg" alt="">
<img src="images (8).jpeg" alt="">
<img src="images (9).jpeg" alt="">
<img src="images (10).jpeg" alt="">
<img src="images (11).jpeg" alt="">
<img src="images (12).jpeg" 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>