2015-11-20 00:58:21 +03:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2015-11-26 01:01:18 +03:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2015-11-20 00:58:21 +03:00
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
< meta name = "description" content = "" >
< meta name = "author" content = "" >
< link rel = "icon" href = "../../favicon.ico" >
< title > Sticky Footer Navbar Template for Bootstrap< / title >
<!-- Bootstrap core CSS -->
< link href = "../../dist/css/bootstrap.min.css" rel = "stylesheet" >
<!-- Custom styles for this template -->
< link href = "sticky-footer-navbar.css" rel = "stylesheet" >
< / head >
< body >
<!-- Fixed navbar -->
< nav class = "navbar navbar-default navbar-fixed-top" >
< div class = "container" >
< div class = "navbar-header" >
< button type = "button" class = "navbar-toggle collapsed" data-toggle = "collapse" data-target = "#navbar" aria-expanded = "false" aria-controls = "navbar" >
< span class = "sr-only" > Toggle navigation< / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< span class = "icon-bar" > < / span >
< / button >
< a class = "navbar-brand" href = "#" > Project name< / a >
< / div >
< div id = "navbar" class = "collapse navbar-collapse" >
< ul class = "nav navbar-nav" >
< li class = "active" > < a href = "#" > Home< / a > < / li >
2015-11-26 01:01:18 +03:00
< li > < a href = "#" > About< / a > < / li >
< li > < a href = "#" > Contact< / a > < / li >
2015-11-20 00:58:21 +03:00
< li class = "dropdown" >
2015-11-26 01:01:18 +03:00
< a href = "#" class = "dropdown-toggle" data-toggle = "dropdown" role = "button" aria-expanded = "false" > Dropdown< / a >
< div class = "dropdown-menu" >
< a class = "dropdown-item" href = "#" > Action< / a >
< a class = "dropdown-item" href = "#" > Another action< / a >
< a class = "dropdown-item" href = "#" > Something else here< / a >
< div role = "separator" class = "dropdown-divider" > < / div >
< h6 class = "dropdown-header" > Nav header< / h6 >
< a class = "dropdown-item" href = "#" > Separated link< / a >
< a class = "dropdown-item" href = "#" > One more separated link< / a >
< / div >
2015-11-20 00:58:21 +03:00
< / li >
< / ul >
< / div > <!-- /.nav - collapse -->
< / div >
< / nav >
<!-- Begin page content -->
< div class = "container" >
< div class = "page-header" >
< h1 > Sticky footer with fixed navbar< / h1 >
< / div >
< p class = "lead" > Pin a fixed-height footer to the bottom of the viewport in desktop browsers with this custom HTML and CSS. A fixed navbar has been added with < code > padding-top: 60px;< / code > on the < code > body > .container< / code > .< / p >
< p > Back to < a href = "../sticky-footer" > the default sticky footer< / a > minus the navbar.< / p >
< / div >
< footer class = "footer" >
< div class = "container" >
< p class = "text-muted" > Place sticky footer content here.< / p >
< / div >
< / footer >
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
2015-11-26 01:01:18 +03:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js" > < / script >
2015-11-20 00:58:21 +03:00
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
< script src = "../../dist/js/bootstrap.min.js" > < / script >
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../../assets/js/ie10-viewport-bug-workaround.js" > < / script >
< / body >
< / html >