Created
July 12, 2012 05:52
-
-
Save ynonp/3096138 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> | |
<head> | |
<link href="bootstrap/css/bootstrap.css" rel="stylesheet" /> | |
<link href="bootstrap/css/bootstrap-responsive.css" rel="stylesheet" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Bootstrap Example</title> | |
<style> | |
.row { margin-bottom: 15px; margin-top: 15px; } | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="span1"> | |
<a href="#" class="btn btn-primary">Start</a> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="span1"> | |
<a href="#" class="btn btn-danger">Stop</a> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment