2014-07-12 11:06:13 +02:00
---
layout: page
title: Basic template
---
2014-03-17 03:03:53 +01:00
2014-07-12 11:06:13 +02:00
Start with this basic HTML template, or modify [these examples ](../examples/ ). We hope you'll customize our templates and examples, adapting them to suit your needs.
Copy the HTML below to begin working with a minimal Bootstrap document.
2014-03-17 03:03:53 +01:00
{% highlight html %}
<!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" >
< title > Bootstrap 101 Template< / title >
<!-- Bootstrap -->
< link href = "css/bootstrap.min.css" rel = "stylesheet" >
< / head >
< body >
< h1 > Hello, world!< / h1 >
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
2014-05-13 07:33:23 +02:00
< script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js" > < / script >
2014-03-17 03:03:53 +01:00
<!-- Include all compiled plugins (below), or include individual files as needed -->
< script src = "js/bootstrap.min.js" > < / script >
< / body >
< / html >
{% endhighlight %}
2014-07-12 11:06:13 +02:00