Created
December 20, 2013 21:35
-
-
Save hmert/8062012 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html class="full" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<title>Full Page Image Background Template for Bootstrap 3</title> | |
<!-- Bootstrap core CSS --> | |
<link href="css/bootstrap.css" rel="stylesheet"> | |
<style type="text/css"> | |
body { | |
margin-top: 50px; | |
margin-bottom: 50px; | |
background: none; | |
} | |
.full { | |
background: url(http://placehold.it/1920x1080) no-repeat center center fixed; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} | |
</style> | |
</head> | |
<body> | |
<nav class="navbar navbar-fixed-bottom navbar-inverse" role="navigation"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> | |
<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="index.php">Start Bootstrap</a> | |
</div> | |
<!-- Collect the nav links, forms, and other content for toggling --> | |
<div class="collapse navbar-collapse navbar-ex1-collapse"> | |
<ul class="nav navbar-nav"> | |
<li><a href="#about">About</a></li> | |
<li><a href="#services">Services</a></li> | |
<li><a href="#contact">Contact</a></li> | |
</ul> | |
</div><!-- /.navbar-collapse --> | |
</div><!-- /.container --> | |
</nav> | |
<div class="container"> | |
<div class="row"> | |
<div class="col-lg-6 col-sm-12"> | |
<h1>The Big Picture</h1> | |
<p>Here's a spot for some awesome intro text. Check out the fixed nav at the bottom!</p> | |
<p>Set the background image in the CSS, pair it with some cool fonts, and you will have a rockin' start to a cool portfolio.</p> | |
</div> | |
</div> | |
</div> | |
<!-- JavaScript --> | |
<script src="js/jquery-1.10.2.js"></script> | |
<script src="js/bootstrap.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment