-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootstrap-grid.html
More file actions
26 lines (26 loc) · 1006 Bytes
/
bootstrap-grid.html
File metadata and controls
26 lines (26 loc) · 1006 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>
<head>
<title>Bootstrap-grid</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="bootstrap-grid.css">
<body>
<div class="container-fluid">
<div class="row" id="firstr">
<div class="col-2">
<div class="row"><div id="white1"></div></div>
<div class="row"><div id="white2"></div></div>
</div>
<div class="col"><div class="total" id="red"></div></div>
</div>
<div class="row" id="secr">
<div class="col"><div class="total" id="blue"></div></div>
<div class="col-9"><div class="total" id="white3"></div></div>
<div class="col-1">
<div class="row"><div id="white4"></div></div>
<div class="row"><div class="total" id="yellow"></div></div>
</div>
</div>
</div>
</body>
</html>