-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (48 loc) · 1.96 KB
/
Copy pathindex.html
File metadata and controls
63 lines (48 loc) · 1.96 KB
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>
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset='UTF-8'>
<title>jQuery MagicLine Navigation Demo</title>
<link rel='stylesheet' href='css/style.css'>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src='https://code.jquery.com/jquery-3.2.1.min.js'></script>
<script src='https://code.jquery.com/color/jquery.color-2.1.2.min.js'></script>
<script src='js/example.js'></script>
</head>
<body>
<header>
<h1>jQuery MagicLine Navigation Demo</h1>
</header>
<div class="nav-wrap">
<ul class="group" id="example-one">
<li class="current_page_item">
<a href="#">Home</a>
</li>
<li><a href="#">Buy Tickets</a></li>
<li><a href="#">Group Sales</a></li>
<li><a href="#">Reviews</a></li>
<li><a href="#">The Show</a></li>
<li><a href="#">Videos</a></li>
<li><a href="#">Photos</a></li>
<li><a href="#">Magic Shop</a></li>
</ul>
</div>
<div class="nav-wrap">
<ul class="group" id="example-two">
<li><a rel="#fe4902" href="#">Home</a></li>
<li><a rel="#A41322" href="#">Buy Tickets</a></li>
<li><a rel="#C6AA01" href="#">Group Sales</a></li>
<li class="current_page_item_two"><a rel="#900" href="#">Reviews</a></li>
<li><a rel="#D40229" href="#">The Show</a></li>
<li><a rel="#98CEAA" href="#">Videos</a></li>
<li><a rel="#1B9B93" href="#">Photos</a></li>
<li><a rel="#8DC91E" href="#">Magic Shop</a></li>
</ul>
</div>
</body>
</html>