-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBootstrapFour.html
More file actions
43 lines (37 loc) · 1.62 KB
/
BootstrapFour.html
File metadata and controls
43 lines (37 loc) · 1.62 KB
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
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="./bootstrap.min.css">
<style type="text/css">
.nopadding {
padding: 0;
margin: 0;
}
</style>
</head>
<body>
<!-- Use the cute kitty pictures below, and arrange them into the desired result. You'll need the one style item defined above to complete this properly. The rest is all Bootstrap. -->
<div class="container">
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6 col-lg-6">
<div class="row">
<img class='img-responsive nopadding col-xs-6 col-sm-6 col-md-6 col-lg-6' src='./490'>
<img class='img-responsive nopadding col-xs-6 col-sm-6 col-md-6 col-lg-6' src='./500'>
</div>
<div class="row">
<img class='img-responsive nopadding col-xs-6 col-sm-6 col-md-6 col-lg-6' src='./510'>
<img class='img-responsive nopadding col-xs-6 col-sm-6 col-md-6 col-lg-6' src='./495'>
</div>
</div>
<img class='img-responsive nopadding col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xs-offset-6 col-sm-offset-6 col-md-offset-6 col-lg-offset-6' src='./810'>
</div>
<div class="row">
<img class='img-responsive nopadding col-xs-3 col-sm-3 col-md-3 col-lg-3' src='./520'>
<img class='img-responsive nopadding col-xs-3 col-sm-3 col-md-3 col-lg-3' src='./530'>
<img class='img-responsive nopadding col-xs-3 col-sm-3 col-md-3 col-lg-3' src='./540'>
<img class='img-responsive nopadding col-xs-3 col-sm-3 col-md-3 col-lg-3' src='./550'>
</div>
</body>
</html>