-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (34 loc) · 900 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, intial-scale=1, user-scalable=no">
<link rel="stylesheet" type="text/css" href="css/style.css">
<title>Menu Design</title>
</head>
<body>
<section>
<header>
<a href="#" class="Logo"><img src="images/Logo.png"></a>
<a href="#" class="toggle">Menu</a>
<ul class="active">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Team</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Contact</a></li>
</ul>
</header>
</section>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('.toggle').click(function(){
$('ul').toggleClass('active');
})
})
</script>
</body>
</html>