-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathresponsive-example.html
More file actions
25 lines (25 loc) · 1000 Bytes
/
responsive-example.html
File metadata and controls
25 lines (25 loc) · 1000 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Responsive example</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-4 col-sm-3 col-12 border">
<h1>.col-lg-6 .col-md-4 .col-sm-3 .col-12</h1>
</div>
<div class="col-lg-6 col-md-4 col-sm-3 col-12 border">
<h1>.col-lg-6 .col-md-4 .col-sm-3 .col-12</h1>
</div>
<div class="col-lg-6 col-md-4 col-sm-3 col-12 border">
<h1>.col-lg-6 .col-md-4 .col-sm-3 .col-12</h1>
</div>
<div class="col-lg-6 col-md-4 col-sm-3 col-12 border">
<h1>.col-lg-6 .col-md-4 .col-sm-3 .col-12</h1>
</div>
</div>
</div>
</body>
</html>