-
Notifications
You must be signed in to change notification settings - Fork 3
/
10_tabs.html
106 lines (106 loc) · 4.76 KB
/
10_tabs.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="../assets/thirdpartylib/bootstrap-4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="../assets/thirdpartylib/fontawesome-free-5.9.0-web/css/all.min.css">
<link rel="stylesheet" href="../assets/css/styles.min.css">
<link rel="stylesheet" href="../assets/css/custom.css">
<script src="../assets/thirdpartylib/jquery/jquery-3.3.1.slim.min.js" defer></script>
<script src="../assets/thirdpartylib/popper-js/popper.min.js" defer></script>
<script src="../assets/thirdpartylib/bootstrap-4.3.1/js/bootstrap.min.js" defer></script>
<script src="../assets/js/scripts.min.js" defer></script>
<title>Tabs</title>
</head>
<body><main>
<div class="container-fluid">
<div class="row">
<div class="col-12 banner-img"><img src="../assets/img/banner_08.jpg" alt="" /></div>
<div class="col-sm-10 offset-sm-1">
<!-- DO NOT EDIT CODE ABOVE THIS LINE -->
<h1>Tabs</h1>
<h2>Best Practices</h2>
<p>Tabs are useful for elaborating on an idea that has set structures or categories of sub-information, particularly, if you have a collection of pieces of content that all have the same set structures. For example, laying out a series of studies that each has a hypothesis, a method, and findings. Tabs are especially effective when the information presented in the first tab is built on in the second; the second built on in the first, and so on (as in the example of a study's hypothesis, method, and findings).</p>
<p><strong>To copy Tabs onto a different page please make sure the page is in 'Edit HTML' mode.</strong></p>
<h2>Tabs: Group of 2</h2>
<p class="small">Tabs: Horizontal: start copy</p>
<div class="tabs-wrapper tabs-horizontal">
<div class="row">
<div class="col-12">
<div class="list-group flex-md-row text-center" role="tablist">
<a class="list-group-item list-group-item-action active" data-toggle="list" role="tab">Horizontal Tab 1 of 2 </a>
<a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 2 of 2</a></div>
</div>
<div class="col-12">
<div class="tab-content">
<div class="tab-pane fade show active" role="tabpanel" tabindex="0">
<p>Horizontal Tab 1 of 2 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 2 of 2 content</p>
</div>
</div>
</div>
</div>
</div>
<p class="small">Tabs: Horizontal: end copy</p>
<h2>Tabs: Group of 3</h2>
<p class="small">Tabs: Horizontal: start copy</p>
<div class="tabs-wrapper tabs-horizontal">
<div class="row">
<div class="col-12">
<div class="list-group flex-md-row text-center" role="tablist"><a class="list-group-item list-group-item-action active" data-toggle="list" role="tab">Horizontal Tab 1 of 3</a> <a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 2 of 3</a> <a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 3 of 3</a></div>
</div>
<div class="col-12">
<div class="tab-content">
<div class="tab-pane fade show active" role="tabpanel" tabindex="0">
<p>Horizontal Tab 1 of 3 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 2 of 3 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 3 of 3 content</p>
</div>
</div>
</div>
</div>
</div>
<p class="small">Tabs: Horizontal: end copy</p>
<h2>Tabs: Group of 4</h2>
<p class="small">Tabs: Horizontal: start copy</p>
<div class="tabs-wrapper tabs-horizontal">
<div class="row">
<div class="col-12">
<div class="list-group flex-md-row text-center" role="tablist"><a class="list-group-item list-group-item-action active" data-toggle="list" role="tab">Horizontal Tab 1</a> <a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 2</a> <a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 3</a> <a class="list-group-item list-group-item-action" data-toggle="list" role="tab">Horizontal Tab 4</a></div>
</div>
<div class="col-12">
<div class="tab-content">
<div class="tab-pane fade show active" role="tabpanel" tabindex="0">
<p>Horizontal Tab 1 of 4 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 2 of 4 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 3 of 4 content</p>
</div>
<div class="tab-pane fade" role="tabpanel" tabindex="0">
<p>Horizontal Tab 4 of 4 content</p>
</div>
</div>
</div>
</div>
</div>
<p class="small">Tabs: Horizontal: end copy</p>
<!-- DO NOT EDIT CODE BELOW THIS LINE -->
</div>
<div class="col-12"><footer>
<p><img src="../assets/img/logo.png" alt="" /></p>
</footer></div>
</div>
</div>
</main>
</body>
</html>