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

Chuck Michael's bootstrap example solution #174

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 .DS_Store
Binary file not shown.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ assignment_bootstrap_sprint
Pick yourself up!

[A Bootstrap, HTM5 and SASS project from the Viking Code School](http://www.vikingcodeschool.com)

--Answer by Chuck Michael (https://github.com/chuckinabox)
110 changes: 110 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Bootstrap 101 Template</title>

<!-- Bootstrap -->
<link href="stylesheets/bootstrap/bootstrap.css" rel="stylesheet">
<link href="stylesheets/style.css" rel="stylesheet">

<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<header>
<!--Navbar-->
<nav class="navbar-inverse navbar-fixed-top">

<!--Brand name on top left-->
<div class="container">
<div class="row">
<div class="col-sm-2">
<div class="navbar-brand">
<a href="#">Project name</a>
</div>
</div>

<!--Login on top right-->
<div class="col-sm-5 col-sm-offset-5">
<form class="form-inline">
<div class="form-group">
<!--Email-->
<label for="exampleEmail"></label>
<input type="text" class="form-control" id="exampleEmail" placeholder="Email">
</div>
<div class="form-group">
<!--Password-->
<label for="examplePassword"></label>
<input type="password" class="form-control" id="examplePassword" placeholder="Password">
</div>
<!--Sign In-->
<button type="submit" class="btn btn-success">Sign In</button>
</form>
</div>
</div>
</div>
</nav>
</header>
<body>
<!--Jumbotron Section-->
<div class="jumbotron">
<div class="container">
<!--Jumbotron Info-->
<h1>Hello, world!</h1>
<p>This is a template for a simple marketing or informational website. It includes a large callout called a jumbotron and three supporting pieces of content. Use it as a starting point to create something more unique.</p>
<p><a class="btn btn-primary btn-lg" href="#" role="button">Learn more »</a></p>
</div>
</div>

<!--Heading left section-->
<div class="container">
<div class="row">
<div class="col-sm-4">
<h2>Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.</p>
<button type="button" class="btn btn-default" aria-label="Left Align">
<a href="#">View Details »</a>
</button>
</div>


<!--Heading center section-->
<div class="col-sm-4">
<h2>Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.</p>
<button type="button" class="btn btn-default" aria-label="Left Align">
<a href="#">View Details »</a>
</button>
</div>

<!--Heading right section-->
<div class="col-sm-4">
<h2>Heading</h2>
<p>Donec id elit non mi porta gravida at eget metus. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Etiam porta sem malesuada magna mollis euismod. Donec sed odio dui.</p>
<button type="button" class="btn btn-default" aria-label="Left Align">
<a href="#">View Details »</a>
</button>
</div>
</div>

<hr>
<!--Footer-->
<footer>
<p>© 2016 Company, Inc.</p>
</footer>
</div>


<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="stylesheets/bootstrap/bootstrap.js"></script>
</body>
</html>
Binary file added stylesheets/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file added stylesheets/bootstrap/.DS_Store
Binary file not shown.
Loading