What is Bootstrap?
What is Bootstrap?
Bootstrap is a framework developed for the web and is generally created to make mobile-friendly websites.With Bootstrap, you can design multi-screen compatible websites much more quickly by saving on the CSS code you would normally write for a web page compatible with many screens; by multi-screen, I mean screens of different sizes.
Where is Bootstrap Used?
Due to its general purpose, Bootstrap is used when designing websites, and the web pages where it is most commonly used are usually blogs and CMSes.
How is Bootstrap Used?
When designing your site, you can very easily use Bootstrap either by including 3 Bootstrap CDN links in your source code or by including Bootstrap files that you download to your system into your project.
After you include Bootstrap in your project, the only thing you need to do is check the Bootstrap documentation page, learn the codes there, and use them in your project.
<link crossorigin="anonymous" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" rel="stylesheet"></link>
Paste the above code between the "<head></head>" tags of the pages where you want to use Bootstrap in your project.
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
Paste the above codes right above "</body>" between the "<body></body>" tags of the pages where you want to use Bootstrap in your project.
With this method, you will have included Bootstrap in your project without downloading it and made it usable; if you want to download and use it,
click here and download Bootstrap from the page that opens. After Bootstrap is downloaded, all you have to do is include the files you downloaded into your project.


Yorum Gönder