Skip to content

Instantly share code, notes, and snippets.

@TimoDJatomika
Last active November 14, 2022 10:40
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save TimoDJatomika/61090cabf04a2eb27ff81db3e0c89e22 to your computer and use it in GitHub Desktop.
Save TimoDJatomika/61090cabf04a2eb27ff81db3e0c89e22 to your computer and use it in GitHub Desktop.
Simple Bootstrap Hello World HTML File
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-center">Hello World</h1>
</div>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment