Added link to js links commonly missed from beginners (#25054)

* Added link to js links commonly missed from beginners

* Reworded change
This commit is contained in:
elisa-mamolo
2018-12-15 11:59:14 +01:00
committed by Manish Giri
parent 731dda0539
commit 968d5738b1

View File

@ -13,7 +13,10 @@ Adding bootstrap to your page is a fast process, just add the following to the `
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
``` ```
Some Bootstrap components require other JavaScript files, check out the Bootstrap documentation <a href='https://getbootstrap.com/docs/4.1/getting-started/introduction/#js'>here</a> to find the latest scripting files.
You will also need to add the following between the `body` tags in your code. With bootstrap you'll be using `<div>` tags when using many of Bootstrap's features, each tag will have its own unique set of classes applied that allows the tag to perform its task. Other sections of this Bootstrap guide will show more examples of how Bootstrap uses `<div>` tags. (`<div>` tags are not exclusive to Bootstrap however Bootstrap makes use of them.). Below is the code that would would add to the `body` tags in your code to finish getting started. Keep in mind that while this creates the container, the page will still remain blank until you add content to the container. You will also need to add the following between the `body` tags in your code. With bootstrap you'll be using `<div>` tags when using many of Bootstrap's features, each tag will have its own unique set of classes applied that allows the tag to perform its task. Other sections of this Bootstrap guide will show more examples of how Bootstrap uses `<div>` tags. (`<div>` tags are not exclusive to Bootstrap however Bootstrap makes use of them.). Below is the code that would would add to the `body` tags in your code to finish getting started. Keep in mind that while this creates the container, the page will still remain blank until you add content to the container.
```html ```html
<div class="alert alert-success" role="alert"> <div class="alert alert-success" role="alert">
<strong>Congratulations!</strong> <strong>Congratulations!</strong>