Skip to content

Instantly share code, notes, and snippets.

@watagashi
Last active December 22, 2015 07:19
Show Gist options
  • Save watagashi/6437277 to your computer and use it in GitHub Desktop.
Save watagashi/6437277 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Search engines</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script src="//code.jquery.com/jquery.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse" role="navigation">
<div class="navbar-brand">Search engines</div>
</nav>
<hr />
<ul class="list-inline">
<li><a class="btn btn-primary btn-lg" href="http://www.google.com/">Google</a></li>
<li><a class="btn btn-default btn-lg" href="http://www.bing.com/">Bing</a></li>
<li><a class="btn btn-danger btn-lg" href="http://www.yahoo.com/">Yahoo!</a></li>
</ul>
<hr />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment