Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Done #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added 490
Binary file not shown.
Binary file added 495
Binary file not shown.
Binary file added 500
Binary file not shown.
Binary file added 510
Binary file not shown.
Binary file added 520
Binary file not shown.
Binary file added 530
Binary file not shown.
Binary file added 540
Binary file not shown.
Binary file added 550
Binary file not shown.
Binary file added 810
Binary file not shown.
56 changes: 36 additions & 20 deletions BootstrapFour.html
Original file line number Diff line number Diff line change
@@ -1,27 +1,43 @@
<!DOCTYPE html>
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
.nopadding {
padding: 0;
}
</style>
<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 bellow, 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. -->
<!-- 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'>

<img class='img-responsive' src='http://placekitten.com/g/490/490'>
<img class='img-responsive' src='http://placekitten.com/g/500/500'>
<img class='img-responsive' src='http://placekitten.com/g/510/510'>
<img class='img-responsive' src='http://placekitten.com/g/495/495'>
<img class='img-responsive' src='http://placekitten.com/g/810/810'>
<img class='img-responsive' src='http://placekitten.com/g/520/520'>
<img class='img-responsive' src='http://placekitten.com/g/530/530'>
<img class='img-responsive' src='http://placekitten.com/g/540/540'>
<img class='img-responsive' src='http://placekitten.com/g/550/550'>
</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>

</html>
69 changes: 43 additions & 26 deletions BootstrapOne.html
Original file line number Diff line number Diff line change
@@ -1,33 +1,50 @@
<!DOCTYPE html>

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
div {
text-align: center;
}
.header, .footer {
height: 25px;
background-color: orange;
border: 1px solid black;
}
.nav, .body {
height: 200px;
background-color: yellow;
border: 1px solid black;
}
</style>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
div {
text-align: center;
}

.header,
.footer {
height: 25px;
background-color: orange;
border: 1px solid black;
}

.nav,
.body {
height: 200px;
background-color: yellow;
border: 1px solid black;
}

</style>
</head>

<body>
<!-- Add the correct Bootstrap classes to achieve the desired result. The styling defined above has already been applied. -->
<div class="">
<div class="header">Header</div>
<div class="nav">Nav</div>
<div class="body">Body</div>
<div class="footer">Footer</div>
<!-- Add the correct Bootstrap classes to achieve the desired result. The styling defined above has already been applied. -->
<div class="container">
<div class="row">
<div class="header col-lg-12 col-md-12 col-sm-12 col-xs-12">Header</div>
</div>

<div class="row">
<div class="nav col-lg-2 col-md-2 col-sm-2 col-xs-2">Nav</div>
<div class="body col-lg-10 col-md-10 col-sm-10 col-xs-10">Body</div>
</div>
<div class="row">
<div class="footer col-lg-12 col-md-12 col-sm-12 col-xs-12">Footer</div>
</div>

</div>
</body>
</html>

</html>
53 changes: 42 additions & 11 deletions BootstrapThree.html
Original file line number Diff line number Diff line change
@@ -1,18 +1,49 @@
<!DOCTYPE html>
<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">

<!-- You'll need to add a bit of your own styling to get the desired result. -->
<style type="text/css">

</style>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">

<!-- You'll need to add a bit of your own styling to get the desired result. -->
<style type="text/css">
.black {
background-color: #000;
height: 200px;
}

.blue {
background-color: rgb(0, 117, 255);
height: 200px;
}

.red {
background-color: rgb(255, 0, 0);
height: 200px;
}

</style>
</head>

<body>
<!-- Add the divs you'll need to achieve the desired result bellow this line. -->
<div class="container">
<div class="row">
<div class="black col-sm-6 col-md-6 col-lg-6">

</div>
<div class="clearfix visible-xs-block">
</div>
<div class="blue col-sm-6 col-md-3 col-lg-3">

</div>
<div class="red col-md-3 col-lg-3 visible-lg-block visible-md-block">

</div>
</div>
</div>

</body>
</html>

</html>
43 changes: 29 additions & 14 deletions BootstrapTwo.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
<!DOCTYPE html>

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">

<head>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
.fill {
border: 1px solid black;
background-color: yellow;
}
</style>
<meta charset="utf-8" />
<title></title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style type="text/css">
.fill {
border: 1px solid black;
background-color: yellow;
}

</style>
</head>
<body>
<!-- A little less help this time. You'll need to add the remaining divs, and use the fill class from the style defined at the top of the doc. -->
<div class="fill">This first column will be too large when the rows wrap, so you have to figure out how to get the second row to display properly.</div>

<body>
<!-- A little less help this time. You'll need to add the remaining divs, and use the fill class from the style defined at the top of the doc. -->
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">This first column will be too large when the rows wrap, so you have to figure out how to get the second row to display properly.</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Second
</div>
<div class="clearfix visible-sm-block visible-xs-block">
</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Third
</div>
<div class="fill col-xs-6 col-sm-6 col-md-3 col-lg-3">
Fourth
</div>
</body>
</html>

</html>
5 changes: 5 additions & 0 deletions bootstrap.min.css

Large diffs are not rendered by default.