This repository was archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (73 loc) · 3.43 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/bootstrap-responsive.css" />
<link rel="stylesheet" href="css/jquery-slidetabs.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body class="container">
<div id="demo" class="tabbable slideable">
<div class="tab-container tab-sliding-active">
<a href="#" class="tab-prev"></a>
<div class="tab-slide-container">
<ul class="nav nav-tabs">
<li class="active"><a href="#tab1" data-toggle="tab">Horizontal Tab 1</a></li>
<li><a href="#tab2" data-toggle="tab">Horizontal Tab 2</a></li>
<li><a href="#tab3" data-toggle="tab">Horizontal Tab 3</a></li>
<li><a href="#tab4" data-toggle="tab">Horizontal Tab 4</a></li>
<li><a href="#tab5" data-toggle="tab">Horizontal Tab 5</a></li>
<li><a href="#tab6" data-toggle="tab">Horizontal Tab 6</a></li>
<li><a href="#tab7" data-toggle="tab">Horizontal Tab 7</a></li>
<li><a href="#tab8" data-toggle="tab">Horizontal Tab 8</a></li>
<li><a href="#tab9" data-toggle="tab">Horizontal Tab 9</a></li>
</ul>
</div><!-- /.tab-slide-container -->
<a href="#" class="tab-next"></a>
</div><!-- /.tab-container -->
<div class="tab-content">
<div class="tab-pane active" id="tab1">
<p>I'm in Section 1.</p>
</div>
<div class="tab-pane" id="tab2">
<p>Howdy, I'm in Section 2.</p>
</div>
<div class="tab-pane" id="tab3">
<p>Howdy, I'm in Section 3.</p>
</div>
<div class="tab-pane" id="tab4">
<p>Howdy, I'm in Section 4.</p>
</div>
<div class="tab-pane" id="tab5">
<p>Howdy, I'm in Section 5.</p>
</div>
<div class="tab-pane" id="tab6">
<p>Howdy, I'm in Section 6.</p>
</div>
<div class="tab-pane" id="tab7">
<p>Howdy, I'm in Section 7.</p>
</div>
<div class="tab-pane" id="tab8">
<p>Howdy, I'm in Section 8.</p>
</div>
<div class="tab-pane" id="tab9">
<p>Howdy, I'm in Section 9.</p>
</div>
</div>
</div>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/jquery-slidetabs.js"></script>
<script>
jQuery(document).ready(function($) {
window.tabs = $('#demo').slidetabs().data('slidetabs');
});
</script>
</body>
</html>