forked from cssmenumaker/jQuery-Plugin-Responsive-Drop-Down
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (50 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>MenuMaker</title>
<link rel="stylesheet" type="text/css" href="css/menumaker.css">
<style>
#cssmenu {
position: relative;
top: 80px;
margin: auto;
}
</style>
</head>
<body>
<div id="cssmenu">
<ul>
<li><a href="#">Home</a></li>
<li>
<a href="#">Products</a>
<ul>
<li><a href="#">Widgets</a></li>
<li>
<a href="#">Widgets 2</a>
<ul>
<li><a href="#">Plugins</a></li>
<li><a href="#">Extensions</a></li>
<li><a href="#">Modules</a></li>
</ul>
</li>
<li><a href="#">Support</a></li>
<li><a href="#">Another Widget</a></li>
</ul>
</li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<script src="js/jquery-1.8.3.min.js"></script>
<script src="js/menumaker.js"></script>
<script type="text/javascript">
$("#cssmenu").menumaker({
title: "Menu",
format: "multitoggle"
});
</script>
</body>
</html>