Advantages of Bootstrap:
<-- Latest compiled and minified CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"rel="stylesheet">
<-- Latest compiled JavaScript --> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"</script>
Bootstrap 5 relies on HTML elements and CSS features that work correctly only when the HTML5 doctype is declared.
Always start your web page with the HTML5 doctype, and make sure to include the lang attribute, a proper page title, and the correct character encoding.
<!DOCTYPE html> <html lang="en"> <head> <title> Bootstrap 5 Example </title> </head> </html>