How to use Bootstrap in Dreamweaver Site

Notes:

How to use Bootstrap in Dreamweaver site:

Bootstrap:
- is a collection of prebuilt web resources (i.e. CSS files, JS files etc), meant to design responsive websites.

1. Download jQuery & Bootstrap:
Downloading jQuery: https://jquery.com/download
- Download the compressed production jQuery (latest version)
Downloading Bootstrap: https://getbootstrap.com
- Download ready to use compiled code for Bootstrap (latest version)

2. Import Bootstrap & jQuery folders to the root directory and rename

3. Link Bootstrap & jQuery to HTML page:
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<script src="jquery/jquery-3.3.1.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>

4. Test Bootstrap is working or not:
<input type="button" value="Click Me" class="btn btn-primary"/>

Interview Questions: