-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial upload of files that I started
- Loading branch information
1 parent
4691fe0
commit 9cae925
Showing
21 changed files
with
9,366 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,221 @@ | ||
<!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"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<link rel="icon" href="favicon.ico"> | ||
|
||
<title>Software Engineering Project</title> | ||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="view/css/bootstrap.min.css" rel="stylesheet"> | ||
|
||
<!-- Just for debugging purposes. Don't actually copy these 2 lines! --> | ||
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> | ||
<script src="../../assets/js/ie-emulation-modes-warning.js"></script> | ||
|
||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
<!--[if lt IE 9]> | ||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
<![endif]--> | ||
|
||
<!-- Custom styles for this template --> | ||
<link href="view/css/carousel.css" rel="stylesheet"> | ||
</head> | ||
<!-- NAVBAR | ||
================================================== --> | ||
<body> | ||
<div class="navbar-wrapper"> | ||
<div class="container"> | ||
|
||
<div class="navbar navbar-inverse navbar-static-top" role="navigation"> | ||
<div class="container"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#">Project name</a> | ||
</div> | ||
<div class="navbar-collapse collapse"> | ||
<ul class="nav navbar-nav"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#about">About</a></li> | ||
<li><a href="#contact">Contact</a></li> | ||
<li class="dropdown"> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <span class="caret"></span></a> | ||
<ul class="dropdown-menu" role="menu"> | ||
<li><a href="#">Action</a></li> | ||
<li><a href="#">Another action</a></li> | ||
<li><a href="#">Something else here</a></li> | ||
<li class="divider"></li> | ||
<li class="dropdown-header">Nav header</li> | ||
<li><a href="#">Separated link</a></li> | ||
<li><a href="#">One more separated link</a></li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
<!-- Carousel | ||
================================================== --> | ||
<div id="myCarousel" class="carousel slide" data-ride="carousel"> | ||
<!-- Indicators --> | ||
<ol class="carousel-indicators"> | ||
<li data-target="#myCarousel" data-slide-to="0" class="active"></li> | ||
<li data-target="#myCarousel" data-slide-to="1"></li> | ||
<li data-target="#myCarousel" data-slide-to="2"></li> | ||
</ol> | ||
<div class="carousel-inner"> | ||
<div class="item active"> | ||
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAHd3dwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="First slide"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>OMG WE MANAGE BOOKns</h1> | ||
<p>Note: If you're viewing this page via a <code>file://</code> URL, the "next" and "previous" Glyphicon buttons on the left and right might not load/display properly due to web browser security rules.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#" role="button">Sign up today</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAGZmZgAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="Second slide"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>Another example headline.</h1> | ||
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#" role="button">Learn more</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<img src="data:image/gif;base64,R0lGODlhAQABAIAAAFVVVQAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==" alt="Third slide"> | ||
<div class="container"> | ||
<div class="carousel-caption"> | ||
<h1>One more for good measure.</h1> | ||
<p>Cras justo odio, dapibus ac facilisis in, egestas eget quam. Donec id elit non mi porta gravida at eget metus. Nullam id dolor id nibh ultricies vehicula ut id elit.</p> | ||
<p><a class="btn btn-lg btn-primary" href="#" role="button">Browse gallery</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev"><span class="glyphicon glyphicon-chevron-left"></span></a> | ||
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next"><span class="glyphicon glyphicon-chevron-right"></span></a> | ||
</div><!-- /.carousel --> | ||
|
||
|
||
|
||
<!-- Marketing messaging and featurettes | ||
================================================== --> | ||
<!-- Wrap the rest of the page in another container to center all the content. --> | ||
|
||
<div class="container marketing"> | ||
|
||
<!-- Four columns of text below the carousel --> | ||
<div class="row"> | ||
<div class="col-lg-3"> | ||
<img class="img-circle" src="view/images/headings/bookshelf.png" alt="Generic placeholder image" style="width: 140px; height: 140px;"> | ||
<h2>Extensive Selection</h2> | ||
<p>We hold an extensive library of books, music, movies, and even a user-friendly management system for you to experience it all! Create your profile today to dive into a new world that is only limited by your imagination.</p> | ||
<p><a class="btn btn-default" href="#" role="button">View details »</a></p> | ||
</div><!-- /.col-lg-3 --> | ||
<div class="col-lg-3"> | ||
<img class="img-circle" src="view/images/headings/magnifyingglass.png" alt="Generic placeholder image" style="width: 140px; height: 140px;"> | ||
<h2>Search for it!</h2> | ||
<p>You can search through an extensive database of a variety of choices of books, CDs, movies, and more! You do not even have to log in to see if we have what you're looking for.</p> | ||
<p><a class="btn btn-default" href="#" role="button">View details »</a></p> | ||
</div><!-- /.col-lg-3 --> | ||
<div class="col-lg-3"> | ||
<img class="img-circle" src="view/images/headings/calendar.png" alt="Generic placeholder image" style="width: 140px; height: 140px;"> | ||
<h2>Timely Check-Outs</h2> | ||
<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh.</p> | ||
<p><a class="btn btn-default" href="#" role="button">View details »</a></p> | ||
</div><!-- /.col-lg-3 --> | ||
<div class="col-lg-3"> | ||
|
||
<form class="form-signin" role="form"> | ||
<h2 class="form-signin-heading">Please sign in</h2> | ||
<input type="email" class="form-control" placeholder="Email address" required autofocus> | ||
<input type="password" class="form-control" placeholder="Password" required> | ||
<label class="checkbox"> | ||
<input type="checkbox" value="remember-me"> Remember me | ||
</label> | ||
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button> | ||
</form> | ||
</div> <!-- /.col-lg-3 --> | ||
</div><!-- /.row --> | ||
|
||
|
||
<!-- START THE FEATURETTES --> | ||
|
||
<hr class="featurette-divider"> | ||
|
||
<div class="row featurette"> | ||
<div class="col-md-7"> | ||
<h2 class="featurette-heading">First featurette heading. <span class="text-muted">It'll blow your mind.</span></h2> | ||
<p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p> | ||
</div> | ||
<div class="col-md-5"> | ||
<img class="featurette-image img-responsive" src="view/images/index.svg" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> | ||
</div> | ||
</div> | ||
|
||
<hr class="featurette-divider"> | ||
|
||
<div class="row featurette"> | ||
<div class="col-md-5"> | ||
<img class="featurette-image img-responsive" src="view/images/index.svg" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> | ||
</div> | ||
<div class="col-md-7"> | ||
<h2 class="featurette-heading">Oh yeah, it's that good. <span class="text-muted">See for yourself.</span></h2> | ||
<p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p> | ||
</div> | ||
</div> | ||
|
||
<hr class="featurette-divider"> | ||
|
||
<div class="row featurette"> | ||
<div class="col-md-7"> | ||
<h2 class="featurette-heading">And lastly, this one. <span class="text-muted">Checkmate.</span></h2> | ||
<p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p> | ||
</div> | ||
<div class="col-md-5"> | ||
<img class="featurette-image img-responsive" src="view/images/index.svg" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> | ||
</div> | ||
</div> | ||
|
||
<hr class="featurette-divider"> | ||
|
||
<!-- /END THE FEATURETTES --> | ||
|
||
|
||
<!-- FOOTER --> | ||
<footer> | ||
<p class="pull-right"><a href="#">Back to top</a></p> | ||
<p>© 2014 Company, Inc. · <a href="#">Privacy</a> · <a href="#">Terms</a></p> | ||
</footer> | ||
|
||
</div><!-- /.container --> | ||
|
||
|
||
<!-- Bootstrap core JavaScript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | ||
<script src="view/dist/js/bootstrap.min.js"></script> | ||
<script src="../../assets/js/docs.min.js"></script> | ||
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> | ||
<script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.