Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has

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: 2px solid black; } .row { border: 2px solid blue; } .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: 2px solid green; } </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 "> <div class="col-8">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of </div> <div class="col-4"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has </div> </div> <div class="row "> <div class="col-3">Lorem Ipsum is simply dummy text of the printing and typesetting industry. </div> <div class="col-6"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has </div> <div class="col-5"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has </div> </div> </div> </body> </html>