"one page"
Bootstrap 3.3.0 Snippet by admanekishor

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container-fluid" style="background-color:#38afec;color:#fff;padding:10px;">
<a class="navbar-brand" href="#">WebSiteName</a>
</div>
<nav class="navbar navbar-inverse" data-spy="affix" data-offset-top="197">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<div>
<div class="collapse navbar-collapse" id="myNavbar" style="padding: 5px;">
<ul class="nav navbar-nav">
<li><a href="#section1">Movies</a></li>
<li><a href="#section2">Sports</a></li>
<li><a href="#section3">Attraction</a></li>
<li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Events <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#section41">Section 4-1</a></li>
<li><a href="#section42">Section 4-2</a></li>
</ul>
</li>
</ul>
</div>
</div>
</div>
</nav>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
body {
background: #fff !important;
font-size: 16px !important;
font-size: 1.6rem !important;
line-height: 1.1 !important;
font-weight: normal !important;
color: #333 !important;
font-family: 'Varela Round', sans-serif !important;
font-style: normal !important;
font-weight: 300 !important;
}
h2 {
font-weight: 700 !important;
}
.brand_name{
font-weight: 700 !important;
font-size: 30px !important;
color: #333 !important;
}
.navbar {
margin-bottom: 0px !important;
}
.navbar-default {
background-color: rgba(255,255,255,.95) !important;
}
.navbar-default .navbar-nav > li > a {
font-size: 1.0em;
}
.navbar-brand.brand_name {
color: #9192ff;
}
.navbar-brand {
float: left;
height: 50px;
padding: 15px 15px;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
$(document).ready(function() {
$('#list').click(function(event){event.preventDefault();$('#products .item').addClass('list-group-item');});
$('#grid').click(function(event){event.preventDefault();$('#products .item').removeClass('list-group-item');$('#products .item').addClass('grid-group-item');});
});
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: