-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex2.html
59 lines (59 loc) · 1.83 KB
/
index2.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap-Dash.js</title>
<meta charset="UTF8">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/dash.css">
</head>
<body id="body-fixed">
<header>
<h1>
Bootstrap-Dash.js
</h1>
<ul class="burger visible-sm visible-xs" id="navtoggle-fixed">
<li></li><li></li><li></li>
</ul>
</header>
<nav class="nav-fixed">
<li><a href="index.html">EXAMPLE 1</a></li>
<li><a href="">EXAMPLE 2</a></li>
<li><a href="">LINK 1</a></li>
<li><a href="">LINK 2</a></li>
<li><a href="">LINK 3</a></li>
</nav>
<div class="content-fixed">
<div style="padding: 20px;">
<h3>Basic usage for NAV-FIXED</h3>
<p>include the following stylesheets in header</p>
<pre>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/dash.css">
</pre>
<p>include the following js files</p>
<pre>
<script src="js/jquery-1.10.1.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/dash.js"></script>
</pre>
<p>using classes and ids properly</p>
<pre>
<header>
<h1>Your h1</h1>
<ul class="burger visible-sm visible-xs" id="navtoggle-fixed">
<li></li><li></li><li></li>
</ul>
</header>
<nav class="nav-fixed">
</nav>
<div class="content-fixed">
</div>
</pre>
</div>
</div>
<script src="js/jquery-1.10.1.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/dash.js"></script>
</body>
</html>