web analytics

Web Development with Bootstrap

Options

codeling 1595 - 6639
@2021-04-29 14:23:49

What is Bootstrap?

Bootstrap is a free and open-source tool collection for creating responsive websites and web applications. It is the most popular HTML, CSS, and JavaScript framework for developing responsive, mobile-first websites. Bootstrap contains the basic tools and elements you will need in most of your projects such as: tables, buttons, text and form tools, heading, navigation, backgrounds, and more. Bootstrap saves designers a lot of time and effort while designing pages. All they need to know is the class names they will work with to give the appropriate formatting to their element. In addition, the Bootstrap framework makes the design fit and responsive to all different screen sizes and browsers.

Bootstrap was conceived by Mark Otto and Jacob Thornton, who were working at Twitter in 2010. The project was released in 2011 as open source. Since then Bootstrap has become a highly popular framework due to its ease of use and ability to deliver cross-platform compatibility between many browsers and devices.

@2021-04-29 14:43:50

Bootstrap CDN libraries

MaxCDN

  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>

@2021-04-29 14:48:30

Bootstrap is designed to be responsive to mobile devices. Mobile-first styles are part of the core framework.

To ensure proper rendering and touch zooming, add the following <meta> tag inside the <head> element:

<meta name="viewport" content="width=device-width, initial-scale=1">

The width=device-width part sets the width of the page to follow the screen-width of the device (which will vary depending on the device).

The initial-scale=1 part sets the initial zoom level when the page is first loaded by the browser.

@2021-10-31 11:15:27

https://getbootstrap.com/

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com