Col-1

default text ever since the 1500s, when an unknown

Col-2

default text ever since the 1500s, when an unknown

Col-3

default text ever since the 1500s, when an unknown

Col-4

default text ever since the 1500s, when an unknown

Col-4

default text ever since the 1500s, when an unknown

001- code
Exported from Notepad++
<!DOCTYPR html> <html lang="en"> <head> <meta charset="UTF-8"> <title>BootStrap</title> <link rel="stylesheet" type="text/css" href="./myheading.css"> <style> .container { border: 1px solid black; } .row { border: 1px solid red; } .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 { border: 1px solid blue; } .pink { background: pink; } .green { background: green; } .silver { background: silver; } .lblue { background: lightblue; } .Orange { background: orange; } .Violet { background: Violet; } .msgreen { background: MediumSeaGreen; } </style> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <div class="row flex-column"> <div class="col pink"> <h1> Col-1 </h1>default text ever since the 1500s, when an unknown </div> <div class="col green"> <h1> Col-2 </h1>default text ever since the 1500s, when an unknown </div> <div class="col silver"> <h1> Col-3 </h1>default text ever since the 1500s, when an unknown </div> <div class="col lblue"> <h1> Col-4 </h1>default text ever since the 1500s, when an unknown </div> <div class="col Orange"> <h1> Col-4 </h1>default text ever since the 1500s, when an unknown </div> </div> </div> </body> </html>