Open In App

Bootstrap 5 Reboot

Bootstrap 5 Reboot is used to reboot all the styles of some specific elements. All the HTML elements, hold some styling by using Bootstrap 5 reboot in the file and removes that CSS from those elements.

Bootstrap 5 Reboot:



The below examples illustrate the BootStrap 5 Reboot.

Example 1: In this example, we will show you the Inline Code sample.






<!DOCTYPE html>
<html>
  
<head>
    <link href=
        rel="stylesheet"
        integrity=
"sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
        crossorigin="anonymous">
</head>
  
<body class="m-3">
    <center>
        <h1 class="text-success">
            GeeksforGeeks
        </h1>
        <strong>
            BootStrap5 Reboot inline code
        </strong>
    </center>
    <code>
        #include>stdio.h>
            int main() {
            printf("Hello Geeks");
            }
    </code>
</body>
  
</html>

Output:

Bootstrap 5 Reboot

Example 2: In this example, we will show you misc elements usage




<!DOCTYPE html>
<html>
  
<head>
    <link href=
        rel="stylesheet"
        integrity=
"sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
        crossorigin="anonymous">
</head>
  
<body>
    <div class="container text-center">
        <h1 class="text-success">
            GeeksforGeeks
        </h1>
        <h2>
            BootStrap5 Reboot Misc elements
        </h2>
        <p class="text-danger">
            Address
        </p>
        <address>
            <Strong>GeeksforGeeks</Strong> <br>
            A-143, 9th Floor, Sovereign Corporate Tower,<br>
            Sector- 136, Noida, Uttar Pradesh (201305)<br>
            +91-7838223507 (Course related Queries)<br>
        </address>
        <p class="text-danger">
            Blockquote
        </p>
        <blockquote title="www.geeksforgeeks.org"
                    class="blockquote">
            GeeksforGeeks
        </blockquote>
        <p>
            is best computer science portal
        </p>
    </div>
</body>
</html>

Output:

Bootstrap 5 Reboot

Reference: https://getbootstrap.com/docs/5.0/content/reboot/


Article Tags :