-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday8.html
More file actions
26 lines (26 loc) · 819 Bytes
/
Copy pathday8.html
File metadata and controls
26 lines (26 loc) · 819 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
<title>Document</title>
</head>
<body>
<div align="center">
<!-- grid box -->
<div class="container text-center">
<div class="row">
<div class="col-sm-7 bg-primary margin m-2">
Column 1
</div>
<div class="col-sm bg-success m-2">
Column 2
</div>
<div class="col bg-warning m-2">
Column 3
</div>
</div>
</div>
</div>
</body>
</html>