My Bootstrap isnt working properly too many problems CAN YOU HELP ME?

Viewed 19

Hey guys i am new to bootstrap and while i am practicing with the multiple bootstrap classes i found out that a lot of them dont show anything the classes such as "slide" "dropdown" and "badge" that i found out so far
I DONT KNOW WHAT TO DO !!!!! For the slide example this was my code

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="css/bootstrap.css">
    <title>BOOTSRTAP SITE</title>
</head>

<body>
    <div id="slide" class="carousel slide container" data-ride="carousel">
        <ol class="carousel-indicators">
            <li data-target="#slide" data-slide-to="0" class="active"></li>
            <li data-target="#slide" data-slide-to="1"></li>
            <li data-target="#slide" data-slide-to="2"></li>
            <li data-target="#slide" data-slide-to="3"></li>
        </ol>
        <div class="carousel-inner">
            <div class="carousel-item active">
                <img src="1.png" alt="" class="w-100">
            </div>
            <div class="carousel-item">
                <img src="2.png" alt="" class="w-100">
            </div>
            <div class="carousel-item">
                <img src="3.png" alt="" class="w-100">
            </div>
            <div class="carousel-item">
                <img src="4.png" alt="" class="w-100">
            </div>
        </div>

    </div>
    <div id="slide" class="carousel slide container">
        <ol class="carousel-indicators">
            <li data-target="#slide" data-slide-to="0" class="active"></li>
            <li data-target="#slide" data-slide-to="1"></li>
            <li data-target="#slide" data-slide-to="2"></li>
        </ol>
        <div class="carousel-inner">
            <div class="carousel-item active">
                <img src="1.png" alt="" class="w-100">
            </div>
            <div class="carousel-item">
                <img src="2.png" alt="" class="w-100">
            </div>
            <div class="carousel-item">
                <img src="3.png" alt="" class="w-100">
            </div>
        </div>
    </div>


    <script src="js/popper.min.js"></script>
    <script src="js/jquery-3.6.1.min.js"></script>
    <script src="js/bootstrap.js"></script>
</body>

</html>

THE BOOTSTRAP.CSS AND .JS FILES ARE THE ONE I DOWNLOADED FROM BOOTSTRAP WEBSITE WITH THE LATEST VERSION 5.2.1 I COULDNT INCLUDE THE BOOTSTRAP.CSS FILE BECAUSE IT IS BIG AND THE SITE SAYS "TOO MANY CARACTERS" BUT WHEN I DO IMPLEMENT IT ALL I GET IS AN EMPTY PAGE // DO I NEED TO INCLUDE MORE INFO ?? AM SORRY JUST BARE WITH ME BECAUSE I AM NEW AND THIS IS LIKE MY FIRST QUESTION ON THIS PLATFORM

// THANKS IN ADVANCE

0 Answers
Related