introduction.md 6.95 KB
Newer Older
1
---
Mark Otto's avatar
Mark Otto committed
2
layout: docs
3
title: Introduction
4
description: Get started with Bootstrap, the world's most popular framework for building responsive, mobile-first sites, with BootstrapCDN and a template starter page.
5
group: getting-started
6
redirect_from:
XhmikosR's avatar
XhmikosR committed
7
  - "/docs/"
Mark Otto's avatar
Mark Otto committed
8
9
  - "/docs/4.3/"
  - "/docs/4.3/getting-started/"
XhmikosR's avatar
XhmikosR committed
10
11
  - "/docs/getting-started/"
  - "/getting-started/"
12
toc: true
13
14
15
16
---

## Quick start

XhmikosR's avatar
XhmikosR committed
17
Looking to quickly add Bootstrap to your project? Use BootstrapCDN, provided for free by the folks at StackPath. Using a package manager or need to download the source files? [Head to the downloads page]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/download/).
18

19
20
### CSS

21
22
23
Copy-paste the stylesheet `<link>` into your `<head>` before all other stylesheets to load our CSS.

{% highlight html %}
24
<link rel="stylesheet" href="{{ site.cdn.css }}" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous">
25
26
{% endhighlight %}

27
28
### JS

XhmikosR's avatar
XhmikosR committed
29
Many of our components require the use of JavaScript to function. Specifically, they require our own JavaScript plugins and [Popper.js](https://popper.js.org/). Place the following `<script>`s near the end of your pages, right before the closing `</body>` tag, to enable them. Popper.js must come first, and then our JavaScript plugins.
30
31

{% highlight html %}
32
<script src="{{ site.cdn.popper }}" integrity="{{ site.cdn.popper_hash }}" crossorigin="anonymous"></script>
33
<script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script>
34
35
{% endhighlight %}

XhmikosR's avatar
XhmikosR committed
36
Curious which components explicitly require our JavaScript and Popper.js? Click the show components link below. If you're at all unsure about the general page structure, keep reading for an example page template.
37

XhmikosR's avatar
XhmikosR committed
38
Our `bootstrap.bundle.js` and `bootstrap.bundle.min.js` include [Popper](https://popper.js.org/). For more information about what's included in Bootstrap, please see our [contents]({{ site.baseurl }}/docs/{{ site.docs_version }}/getting-started/contents/#precompiled-bootstrap) section.
39

40
41
<details>
<summary class="text-primary mb-3">Show components requiring JavaScript</summary>
42
{% capture markdown %}
43
44
45
46
47
48
49
50
51
- Alerts for dismissing
- Buttons for toggling states and checkbox/radio functionality
- Carousel for all slide behaviors, controls, and indicators
- Collapse for toggling visibility of content
- Dropdowns for displaying and positioning (also requires [Popper.js](https://popper.js.org/))
- Modals for displaying, positioning, and scroll behavior
- Navbar for extending our Collapse plugin to implement responsive behavior
- Tooltips and popovers for displaying and positioning (also requires [Popper.js](https://popper.js.org/))
- Scrollspy for scroll behavior and navigation updates
52
53
{% endcapture %}
{{ markdown | markdownify }}
54
</details>
55
56
57

## Starter template

58
Be sure to have your pages set up with the latest design and development standards. That means using an HTML5 doctype and including a viewport meta tag for proper responsive behaviors. Put it all together and your pages should look like this:
59
60

{% highlight html %}
61
<!doctype html>
62
63
<html lang="en">
  <head>
64
    <!-- Required meta tags -->
65
    <meta charset="utf-8">
66
    <meta name="viewport" content="width=device-width, initial-scale=1">
67
68

    <!-- Bootstrap CSS -->
69
    <link rel="stylesheet" href="{{ site.cdn.css }}" integrity="{{ site.cdn.css_hash }}" crossorigin="anonymous">
70
71

    <title>Hello, world!</title>
72
73
74
75
  </head>
  <body>
    <h1>Hello, world!</h1>

76
    <!-- Optional JavaScript -->
XhmikosR's avatar
XhmikosR committed
77
    <!-- Popper.js first, then Bootstrap JS -->
78
    <script src="{{ site.cdn.popper }}" integrity="{{ site.cdn.popper_hash }}" crossorigin="anonymous"></script>
79
    <script src="{{ site.cdn.js }}" integrity="{{ site.cdn.js_hash }}" crossorigin="anonymous"></script>
80
81
82
83
  </body>
</html>
{% endhighlight %}

Mark Otto's avatar
Mark Otto committed
84
That's all you need for overall page requirements. Visit the [Layout docs]({{ site.baseurl }}/docs/{{ site.docs_version }}/layout/overview/) or [our official examples]({{ site.baseurl }}/docs/{{ site.docs_version }}/examples/) to start laying out your site's content and components.
Mark Otto's avatar
Mark Otto committed
85
86
87
88
89
90
91
92
93
94

## Important globals

Bootstrap employs a handful of important global styles and settings that you'll need to be aware of when using it, all of which are almost exclusively geared towards the *normalization* of cross browser styles. Let's dive in.

### HTML5 doctype

Bootstrap requires the use of the HTML5 doctype. Without it, you'll see some funky incomplete styling, but including it shouldn't cause any considerable hiccups.

{% highlight html %}
95
<!doctype html>
Mark Otto's avatar
Mark Otto committed
96
97
98
99
100
101
102
103
104
105
<html lang="en">
  ...
</html>
{% endhighlight %}

### Responsive meta tag

Bootstrap is developed *mobile first*, a strategy in which we optimize code for mobile devices first and then scale up components as necessary using CSS media queries. To ensure proper rendering and touch zooming for all devices, **add the responsive viewport meta tag** to your `<head>`.

{% highlight html %}
106
<meta name="viewport" content="width=device-width, initial-scale=1">
Mark Otto's avatar
Mark Otto committed
107
108
{% endhighlight %}

109
You can see an example of this in action in the [starter template](#starter-template).
Mark Otto's avatar
Mark Otto committed
110
111
112

### Box-sizing

113
For more straightforward sizing in CSS, we switch the global `box-sizing` value from `content-box` to `border-box`. This ensures `padding` does not affect the final computed width of an element, but it can cause problems with some third party software like Google Maps and Google Custom Search Engine.
Mark Otto's avatar
Mark Otto committed
114
115
116

On the rare occasion you need to override it, use something like the following:

XhmikosR's avatar
XhmikosR committed
117
{% highlight css %}
Mark Otto's avatar
Mark Otto committed
118
.selector-for-some-widget {
119
  box-sizing: content-box;
Mark Otto's avatar
Mark Otto committed
120
121
122
}
{% endhighlight %}

123
With the above snippet, nested elements—including generated content via `::before` and `::after`—will all inherit the specified `box-sizing` for that `.selector-for-some-widget`.
Mark Otto's avatar
Mark Otto committed
124
125
126

Learn more about [box model and sizing at CSS Tricks](https://css-tricks.com/box-sizing/).

127
### Reboot
Mark Otto's avatar
Mark Otto committed
128

Mark Otto's avatar
Mark Otto committed
129
For improved cross-browser rendering, we use [Reboot]({{ site.baseurl }}/docs/{{ site.docs_version }}/content/reboot/) to correct inconsistencies across browsers and devices while providing slightly more opinionated resets to common HTML elements.
130
131
132
133
134

## Community

Stay up to date on the development of Bootstrap and reach out to the community with these helpful resources.

135
- Follow [@getbootstrap on Twitter](https://twitter.com/{{ site.twitter }}).
XhmikosR's avatar
XhmikosR committed
136
137
- Read and subscribe to [The Official Bootstrap Blog]({{ site.blog }}/).
- Join [the official Slack room]({{ site.slack }}/).
138
- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
139
- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)).
XhmikosR's avatar
XhmikosR committed
140
- Developers should use the keyword `bootstrap` on packages which modify or add to the functionality of Bootstrap when distributing through [npm](https://www.npmjs.com/search?q=keywords:bootstrap) or similar delivery mechanisms for maximum discoverability.
141

142
You can also follow [@getbootstrap on Twitter](https://twitter.com/{{ site.twitter }}) for the latest gossip and awesome music videos.