File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
exercises/03-Bootstrap-Grid Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < meta charset ="utf-8 " />
5+ < meta name ="viewport " content ="width=device-width " />
6+ < link
7+ href ="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css "
8+ rel ="stylesheet "
9+ integrity ="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC "
10+ crossorigin ="anonymous "
11+ />
12+ < title > 03 Bootstrap Grid</ title >
13+ </ head >
14+ < body >
15+ < div class ="container-fluid ">
16+ < h1 > Let's test the grid baby!</ h1 >
17+ < div class ="row ">
18+ < div class ="col-6 "> First col</ div >
19+ < div class ="col-6 "> Second col</ div >
20+ </ div >
21+ < div class ="row ">
22+ < div class ="col-4 "> Third col</ div >
23+ < div class ="col-4 "> Fourth col</ div >
24+ < div class ="col-4 "> Fifth col</ div >
25+ </ div >
26+ < div class ="row ">
27+ < div class ="col-12 bg-danger "> Sixth col</ div >
28+ </ div >
29+ </ div >
30+ </ body >
31+ </ html >
You can’t perform that action at this time.
0 commit comments