Bootstrap with oldschool javascript modals

technologies used:

  • bootstrap
  • javascript
  • html5 and css3

what is inside?

basic functionalities such as modals are applied using javascript.

Standardized file structure:

.index.thml

..js/

.autosuggest.js

.modal.js

..css/

.styles.css

..images/

.<contains all the images>

Bootstrap implementation:

We're just utilizing CDN for this project for faster loading and lesser codes:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

<link rel="stylesheet" href="css/styles.css">