Skip to content

Instantly share code, notes, and snippets.

@asathoor
Created May 17, 2017 09:37
Show Gist options
  • Save asathoor/ae29ac2f309ebb99ea5eb98660ee9993 to your computer and use it in GitHub Desktop.
Save asathoor/ae29ac2f309ebb99ea5eb98660ee9993 to your computer and use it in GitHub Desktop.
Bootstrap from W3
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>My First Bootstrap Page</h1>
<p>This part is inside a .container class.</p>
<p>The .container class provides a responsive fixed width container.</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/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