Skip to content

Commit 6f76f08

Browse files
committed
updated exercise 03 in Bootstrap practice
1 parent d975f3d commit 6f76f08

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta name="viewport" content="width=device-width" />
6+
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
7+
<title>03 Bootstrap Grid</title>
8+
</head>
9+
<body>
10+
<div class="container">
11+
<h1>Let's test the grid baby!</h1>
12+
<div class="row">
13+
<div class="col-6">First col</div>
14+
<div class="col-6">Second col</div>
15+
</div>
16+
<div class="row">
17+
<div>Third col</div>
18+
<div>Fourth col</div>
19+
</div>
20+
</div>
21+
</body>
22+
</html>

exercises/03-Bootstrap-Grid/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ In Bootstrap 5, the `justify-content` property is added to the classes to move t
2121

2222
## 📝 Instructions:
2323

24-
1. Make the second row to have 3 columns of the same `width` (split the row in 3).
24+
1. Make the second row have 3 columns of the same `width` (split the row in 3).
2525

2626
2. Add a third row with only one column of 12 slots.
2727

0 commit comments

Comments
 (0)