Created
December 24, 2022 20:08
-
-
Save wellyington/4b8d6f1b7b9c38b1a5f2be94aa81a412 to your computer and use it in GitHub Desktop.
Boostrap 5 Columns Template (Responsive)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Boostrap 5 Columns Template (Responsive) --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Page Title</title> | |
<meta name="viewport" content="width=device-width"> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="row"> | |
<div class="col col-sm-2 col-12">Column 1</div> | |
<div class="col col-sm-2 col-12">Column 2</div> | |
<div class="col col-sm-2 col-12">Column 3</div> | |
<div class="col col-sm-2 col-12">Column 4</div> | |
<div class="col col-sm-2 col-12">Column 5</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment