### Install Bootstrap via RubyGems (Command Line) Source: https://getbootstrap.com/docs/4.5/getting-started/download Installs the Bootstrap gem using the command line if not using Bundler. This method also requires a Sass compiler and Autoprefixer for a setup matching official compiled versions. ```shell gem install bootstrap -v 4.5.3 ``` -------------------------------- ### Install Bootstrap Dependencies with npm Source: https://getbootstrap.com/docs/4.5/getting-started/build-tools Installs the local dependencies for Bootstrap by running the npm install command in the project's root directory. This command reads the package.json file to fetch and install all necessary packages. ```bash npm install ``` -------------------------------- ### Install Bootstrap via RubyGems (Bundler) Source: https://getbootstrap.com/docs/4.5/getting-started/download Installs Bootstrap into your Ruby applications using Bundler and RubyGems. This is the recommended method for Ruby projects. Ensure you have a Sass compiler and Autoprefixer for a setup matching official compiled versions. ```ruby gem 'bootstrap', '~> 4.5.0' ``` -------------------------------- ### Display Example Code Block Source: https://getbootstrap.com/docs/4.5/examples/blog This snippet demonstrates a basic example of a code block, often used to display code snippets within documentation or content. It's language-agnostic and serves as a placeholder. ```text Example code block ``` -------------------------------- ### Install Bootstrap via npm Source: https://getbootstrap.com/docs/4.5/getting-started/download Installs Bootstrap into your Node.js applications using the npm package manager. The `require('bootstrap')` command loads all jQuery plugins. Note that Bootstrap requires a Sass compiler and Autoprefixer for a setup matching official compiled versions. ```shell npm install bootstrap ``` -------------------------------- ### Install Ruby Dependencies for Jekyll Source: https://getbootstrap.com/docs/4.5/getting-started/build-tools Installs all Ruby dependencies required for running the Bootstrap documentation locally, including Jekyll and its plugins. This is a prerequisite for serving the documentation. ```bash bundle install ``` -------------------------------- ### Install Bootstrap via Composer Source: https://getbootstrap.com/docs/4.5/getting-started/download Installs Bootstrap's Sass and JavaScript assets into your project using Composer, a dependency manager for PHP. A Sass compiler and Autoprefixer are needed for a setup matching official compiled versions. ```shell composer require twbs/bootstrap:^4.5.0 ``` -------------------------------- ### Bootstrap Grid Columns - Three Equal Columns Source: https://getbootstrap.com/docs/4.5/examples/grid Illustrates creating three equal-width columns that start at the 'md' (medium) breakpoint and scale up. On smaller devices, these columns will automatically stack. ```html