2013-06-24 02:17:08 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
2013-09-24 18:43:16 +02:00
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2015-10-06 13:35:39 +02:00
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
2015-01-23 20:34:52 +01:00
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
2013-06-24 02:17:08 +02:00
< meta name = "description" content = "" >
< meta name = "author" content = "" >
2014-03-25 08:30:04 +01:00
< link rel = "icon" href = "../../favicon.ico" >
2013-06-24 02:17:08 +02:00
2013-07-21 08:17:01 +02:00
< title > Sticky Footer Navbar Template for Bootstrap< / title >
2013-06-24 02:17:08 +02:00
<!-- Bootstrap core CSS -->
2014-01-01 15:29:13 +01:00
< link href = "../../dist/css/bootstrap.min.css" rel = "stylesheet" >
2013-06-24 02:17:08 +02:00
<!-- Custom styles for this template -->
2013-07-21 08:30:08 +02:00
< link href = "sticky-footer-navbar.css" rel = "stylesheet" >
2013-06-24 02:17:08 +02:00
< / head >
< body >
2014-02-04 13:56:42 +01:00
<!-- Fixed navbar -->
2016-12-22 06:40:26 +01:00
< nav class = "navbar navbar-inverse navbar-fixed-top navbar-toggleable-md bg-inverse" >
2016-12-22 18:11:57 +01:00
< button class = "navbar-toggler navbar-toggler-right" type = "button" data-toggle = "collapse" data-target = "#navbarCollapse" aria-controls = "navbarCollapse" aria-expanded = "false" aria-label = "Toggle navigation" >
2016-12-22 07:11:04 +01:00
< span class = "navbar-toggler-icon" > < / span >
< / button >
2016-12-22 05:52:46 +01:00
< a class = "navbar-brand" href = "#" > Fixed navbar< / a >
< div class = "collapse navbar-collapse" id = "navbarCollapse" >
< ul class = "nav navbar-nav mt-2 mt-lg-0" >
< li class = "nav-item active" >
< a class = "nav-link" href = "#" > Home < span class = "sr-only" > (current)< / span > < / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" href = "#" > Link< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link disabled" href = "#" > Disabled< / a >
< / li >
< / ul >
2016-12-23 08:04:02 +01:00
< form class = "form-inline mt-2 mt-md-0" >
< input class = "form-control mr-sm-2" type = "text" placeholder = "Search" >
< button class = "btn btn-outline-success my-2 my-sm-0" type = "submit" > Search< / button >
2016-12-22 05:52:46 +01:00
< / form >
2013-06-24 02:17:08 +02:00
< / div >
2016-12-22 05:52:46 +01:00
< / nav >
2013-06-24 02:17:08 +02:00
2014-02-04 13:56:42 +01:00
<!-- Begin page content -->
< div class = "container" >
2016-12-22 05:52:46 +01:00
< div class = "mt-3" >
2014-02-04 13:56:42 +01:00
< h1 > Sticky footer with fixed navbar< / h1 >
2013-06-24 02:17:08 +02:00
< / div >
2016-07-13 19:00:39 +02:00
< 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 >
2014-02-04 13:56:42 +01:00
< p > Back to < a href = "../sticky-footer" > the default sticky footer< / a > minus the navbar.< / p >
2013-06-24 02:17:08 +02:00
< / div >
2014-10-29 21:07:13 +01:00
< footer class = "footer" >
2013-06-24 02:17:08 +02:00
< div class = "container" >
2015-12-08 07:05:37 +01:00
< span class = "text-muted" > Place sticky footer content here.< / span >
2013-06-24 02:17:08 +02:00
< / div >
2014-10-29 21:07:13 +01:00
< / footer >
2013-06-24 02:17:08 +02:00
2013-08-17 21:32:11 +02:00
2013-07-30 19:10:34 +02:00
<!-- Bootstrap core JavaScript
================================================== -->
2013-08-17 21:32:11 +02:00
<!-- Placed at the end of the document so the pages load faster -->
2016-06-29 07:19:46 +02:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js" integrity = "sha384-THPy051/pYDQGanwU6poAc/hOdQxjnOEXzbT+OuUAFqNqFjL+4IGLBgCJC3ZOShY" crossorigin = "anonymous" > < / script >
2015-07-25 23:25:00 +02:00
< script > window . jQuery || document . write ( '<script src="../../assets/js/vendor/jquery.min.js"><\/script>' ) < / script >
2016-03-07 19:11:41 +01:00
< script src = "https://cdnjs.cloudflare.com/ajax/libs/tether/1.2.0/js/tether.min.js" integrity = "sha384-Plbmg8JY28KFelvJVai01l8WyZzrYWG825m+cZ0eDDS1f7d/js6ikvy1+X+guPIB" crossorigin = "anonymous" > < / script >
2013-08-16 02:39:37 +02:00
< script src = "../../dist/js/bootstrap.min.js" > < / script >
2015-09-06 11:16:01 +02:00
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
< script src = "../../assets/js/ie10-viewport-bug-workaround.js" > < / script >
2013-06-24 02:17:08 +02:00
< / body >
2013-08-17 21:32:11 +02:00
< / html >