forked from oncebuilder/responsive-multi-menu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Responsive Multi Menu</title>
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<!-- Include scripts -->
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript" src="js/responsivemultimenu.js"></script>
<!-- Include styles -->
<link rel="stylesheet" href="css/responsivemultimenu.css" type="text/css"/>
<!-- Include media queries -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"/>
</head>
<body style="background: #2C2B2C;">
<div>
<div class="rmm style">
<ul>
<li>
<a href="Books.html">Books</a>
<ul>
<li>
<a href="Audiobooks.html">Audiobooks</a>
</li>
<li>
<a href="Cookbooks.html">Cookbooks</a>
</li>
<li>
<a href="Catalogs.html">Catalogs</a>
</li>
<li>
<a href="Other.html">Other</a>
<ul>
<li><a href="Other.html">Other 1</a></li>
<li><a href="Other.html">Other 2</a></li>
</ul>
</li>
</ul>
</li>
<li>
<a href="Dvds.html">Dvds</a>
</li>
<li>
<a href="Music.html">Music</a>
<ul>
<li><a href="Cassettes.html">Cassettes</a></li>
<li><a href="CD.html">CD</a></li>
<li><a href="Records.html">Records</a></li>
</ul>
</li>
<li>
<a href="Videogames.html">Video games</a>
</li>
</ul>
</div>
</div>
</body>
</html>