forked from techlab/jquery-smartwizard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest-template.html
More file actions
50 lines (48 loc) · 1.7 KB
/
test-template.html
File metadata and controls
50 lines (48 loc) · 1.7 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
<!DOCTYPE html>
<html>
<head>
<title>jQuery Smart Wizard test file</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="smartwizard">
<ul class="nav">
<li class="nav-item">
<a class="nav-link" href="#step-1">
<strong>Step 1</strong> This is step description
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#step-2">
<strong>Step 2</strong> This is step description
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#step-3">
<strong>Step 3</strong> This is step description
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#step-4">
<strong>Step 4</strong> This is step description
</a>
</li>
</ul>
<div class="tab-content">
<div id="step-1" class="tab-pane" role="tabpanel" aria-labelledby="step-1">
Step 1 Content
</div>
<div id="step-2" class="tab-pane" role="tabpanel" aria-labelledby="step-2">
Step 2 Content
</div>
<div id="step-3" class="tab-pane" role="tabpanel" aria-labelledby="step-3">
Step 3 Content
</div>
<div id="step-4" class="tab-pane" role="tabpanel" aria-labelledby="step-4">
Step 4 Content
</div>
</div>
</div>
</body>
</html>