-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.html
31 lines (28 loc) · 1.05 KB
/
demo.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
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<title>Demo</title>
</head>
<body>
<div class="container" style="padding-top: 5%">
<section data-wizard="wizard" class='chunk-container'>
<section data-wizard='section'>
<h2>Hello</h2>
...
</section>
<section data-wizard='section'>
<h2>World</h2>
...
</section>
<section data-wizard='section'>
<h2>Wizard</h2>
<h3>Something</h3>
</section>
</section>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<script src="wizard.min.js" type="text/javascript"></script>
</body>
</html>