Render Flow - Row and column structure
Read <div class='container'>
→Create container box
Read <div class='row'>
→Create row box inside container
Read <div class='col'>
→Create column box inside row
Read <div class='col'>
→Create second column box inside row
Close row
Close container
The browser reads the container, then the row inside it, and then the columns inside the row. Bootstrap's CSS styles the row as a flex container and columns as flex items, arranging them horizontally.