Created
August 22, 2014 02:34
-
-
Save icchan/a13ccf521f75ac585622 to your computer and use it in GitHub Desktop.
This file contains 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 lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta name="description" content=""> | |
<meta name="author" content=""> | |
<link rel="icon" href="favicon.ico"> | |
<title>Starter Template for Bootstrap</title> | |
<!-- Bootstrap CSS --> | |
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/spacelab/bootstrap.min.css" rel="stylesheet"> | |
<!-- | |
// Select one of these: | |
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> | |
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/slate/bootstrap.min.css" rel="stylesheet"> | |
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/spacelab/bootstrap.min.css" rel="stylesheet"> | |
<link href="//maxcdn.bootstrapcdn.com/bootswatch/3.2.0/amelia/bootstrap.min.css" rel="stylesheet"> | |
--> | |
<!-- Font Awesome! --> | |
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet"> | |
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | |
<!--[if lt IE 9]> | |
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
<![endif]--> | |
<style> | |
body { | |
padding-top: 50px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> | |
<div class="container"> | |
<div class="navbar-header"> | |
<a class="navbar-brand" href="#">Project name</a> | |
</div> | |
<div class="collapse navbar-collapse"> | |
<ul class="nav navbar-nav"> | |
<li class="active"><a href="#">Home</a></li> | |
<li><a href="#about">About</a></li> | |
</ul> | |
</div><!--/.nav-collapse --> | |
</div> | |
</div> | |
<div class="container"> | |
<!-- | |
======================= | |
Your content goes here | |
======================= | |
//--> | |
<!-- Some examples to get you started //--> | |
<div class="starter-template"> | |
<h1>Bootstrap starter template</h1> | |
<p class="lead">Use this document as a way to quickly start any new project.<br> All you get is this text and a mostly barebones HTML document.</p> | |
</div> | |
<div class="list-group"> | |
<a class="list-group-item" href="#"><i class="fa fa-home fa-fw"></i> Home</a> | |
<a class="list-group-item" href="#"><i class="fa fa-book fa-fw"></i> Library</a> | |
<a class="list-group-item" href="#"><i class="fa fa-pencil fa-fw"></i> Applications</a> | |
<a class="list-group-item" href="#"><i class="fa fa-cog fa-fw"></i> Settings</a> | |
</div> | |
<div> | |
<i class="fa fa-spinner fa-spin"></i> | |
<i class="fa fa-circle-o-notch fa-spin"></i> | |
<i class="fa fa-refresh fa-spin"></i> | |
<i class="fa fa-cog fa-spin"></i> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th>Row</th> | |
<th>First Name</th> | |
<th>Last Name</th> | |
<th>Email</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> | |
<td>1</td> | |
<td>John</td> | |
<td>Carter</td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td>2</td> | |
<td>Peter</td> | |
<td>Parker</td> | |
<td>[email protected]</td> | |
</tr> | |
<tr> | |
<td>3</td> | |
<td>John</td> | |
<td>Rambo</td> | |
<td>[email protected]</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
<div class="input-group margin-bottom-sm"> | |
<span class="input-group-addon"><i class="fa fa-envelope-o fa-fw"></i></span> | |
<input class="form-control" type="text" placeholder="Email address"> | |
</div> | |
<div class="input-group"> | |
<span class="input-group-addon"><i class="fa fa-key fa-fw"></i></span> | |
<input class="form-control" type="password" placeholder="Password"> | |
</div> | |
<div class="btn-group open"> | |
<a class="btn btn-primary" href="#"><i class="fa fa-user fa-fw"></i> User</a> | |
<a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#"> | |
<span class="fa fa-caret-down"></span></a> | |
</div> | |
</div><!-- /.container --> | |
<!-- Bootstrap core JavaScript | |
================================================== --> | |
<!-- Placed at the end of the document so the pages load faster --> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment