-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.htm
115 lines (114 loc) · 4.41 KB
/
index.htm
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Fast and Simple Links Box Navigation Menu: BoxyMenu</title>
<link href="css/demo.css" rel="stylesheet" type="text/css" />
<link href="css/boxymenu.css" rel="stylesheet" type="text/css" />
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/boxymenu.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#menu-wrapper').boxymenu();
});
</script>
<style type="text/css">
.demobar
{
height: 90px;
line-height: 90px;
}
.demobar .fleft
{
float: left;
margin-left: 10px;
}
.demobar .fright
{
float: right;
margin-top: 14px;
margin-right: 10px;
}
</style>
</head>
<body>
<div class="demobar">
<div class="fleft">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-6472538845369616";
/* On Demos */
google_ad_slot = "4764157394";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<div class="fright">
<script type="text/javascript"><!--
google_ad_client = "ca-pub-6472538845369616";
/* On Demos 2 */
google_ad_slot = "6440596675";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
</div>
<div id="menu-wrapper">
<ul class="boxy-menu">
<li>
<div class="boxy-menu-item-top">
Inline Content
</div>
<div class="boxy-menu-item-bottom">
<ul class="items">
<li><a href="http://www.egrappler.com/jquery-image-preload-plugin-smart-preloader/"
target="_blank">Smart Preloader</a></li>
<li><a href="#" target="_blank">Second Link Here </a></li>
<li><a href="#" target="_blank">Third Link Here </a></li>
<li><a href="#" target="_blank">Fourth Link Here </a></li>
</ul>
</div>
</li>
<li>
<div class="boxy-menu-item-top">
Portfolio
</div>
<div class="boxy-menu-item-bottom">
<ul class="items">
<li><a href="#" target="_blank">Credit Card Validation </a></li>
<li><a href="#" target="_blank">Content Carousels </a></li>
<li><a href="http://www.egrappler.com/jquery-pagination-plugin-smart-paginator/"
target="_blank">Smart Paginator</a></li>
<li><a href="#" target="_blank">Vertical News Slider </a></li>
<li><a href="#" target="_blank">jQuery Pagination Plugin </a></li>
<li><a href="#" target="_blank">Lightweight Tooltips</a></li>
</ul>
</div>
</li>
<li>
<div class="boxy-menu-item-top">
Useful
</div>
<div class="boxy-menu-item-bottom">
<ul class="items">
<li><a href="http://www.egrappler.com/how-to-setup-web-svn-server-subversion/" target="_blank">
Setup Web SVN Server</a></li>
<li><a href="#" target="_blank">Second Link Here </a></li>
<li><a href="#" target="_blank">Third Link Here </a></li>
<li><a href="#" target="_blank">Fourth Link Here </a></li>
</ul>
</div>
</li>
</ul>
</div>
<br />
<br />
<br />
<div id="inline-content">
</div>
</body>
</html>