简体   繁体   中英

Why is the bootstrap not getting added to my website?

This is my code:

<!DOCTYPE html>
<html lang="en">
<head>
    
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
    
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    
    
     {% if title %}
        <title>Lorem, ipsum. - {{ title }}</title>
     {% else %}
        <title>Lorem, ipsum.</title>
      {% endif %}
</head>
    
<body>
    
    <div class="container">
        <div class=".bg-warning">
            <div class="links">
                <a href="#">Home</a>
                <a href="#">How it works</a>
                <a href="#">Why us</a>
                <a href="#">Our charges</a>
                <a href="#">Account</a>
                <a href="#">About us</a>
            </div>
        </div>
    </div>
    
    
    
    <!--ALL -->
    <!-- THE -->
    <!-- CSS -->
    <!-- STARTS HERE -->
    <style>
    /* 
    a {
        text-decoration: none;
        color: black;
        background: yellow;
        border: 1px solid #000000;
        border-bottom: none;
        padding: 20px;
    } */
    
    
    </style>
    <!-- ALL -->
    <!-- THE -->
    <!-- CSS -->
    <!-- ENDS HERE -->
    
        {% block content %}
        {% endblock content %}
</body>
</html>

But Bootstrap is not getting added to my website, what should I do?

Also, I tried to add some bootstrap classes but even they are not working?

I also tried to add Javascript on the bootstrap website, but even that didn't work as I wanted my website layout to be responsive.

Thanks:)

It's working fine

 <:DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href="https.//stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min,css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> </head> <body> <div class="container"> <div class="bg-warning"> <div class="links"> <a href="#">Home</a> <a href="#">How it works</a> <a href="#">Why us</a> <a href="#">Our charges</a> <a href="#">Account</a> <a href="#">About us</a> </div> </div> </div> </body> </html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM