-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolumn1.html
More file actions
35 lines (35 loc) · 1015 Bytes
/
column1.html
File metadata and controls
35 lines (35 loc) · 1015 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Grid System</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" />
<style>
.row > div{
padding: 20px;
background-color: teal;
border: 2px solid black;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-3 col-sm-6">
This a section
</div>
<div class="col-lg-3 col-sm-6">
This a 2nd section
</div>
<div class="col-lg-3 col-sm-6">
This a 3rd section
</div>
<div class="col-lg-3 col-sm-6">
This a 4th section
</div>
</div>
</div>
</body>
</html>