123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- <!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="">
- <title>Business Casual - Start Bootstrap Theme</title>
-
- <link href="css/bootstrap.min.css" rel="stylesheet">
-
- <link href="css/business-casual.css" rel="stylesheet">
-
- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800" rel="stylesheet" type="text/css">
- <link href="https://fonts.googleapis.com/css?family=Josefin+Slab:100,300,400,600,700,100italic,300italic,400italic,600italic,700italic" rel="stylesheet" type="text/css">
-
-
-
- </head>
- <body>
- <div class="brand">Business Casual</div>
- <div class="address-bar">3481 Melrose Place | Beverly Hills, CA 90210 | 123.456.7890</div>
-
- <nav class="navbar navbar-default" role="navigation">
- <div class="container">
-
- <div class="navbar-header">
- <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
- <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="index.html">Business Casual</a>
- </div>
-
- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
- <ul class="nav navbar-nav">
- <li>
- <a href="index.html">Home</a>
- </li>
- <li>
- <a href="about.html">About</a>
- </li>
- <li>
- <a href="blog.html">Blog</a>
- </li>
- <li>
- <a href="contact.html">Contact</a>
- </li>
- </ul>
- </div>
-
- </div>
-
- </nav>
- <div class="container">
- <div class="row">
- <div class="box">
- <div class="col-lg-12 text-center">
- <div id="carousel-example-generic" class="carousel slide">
-
- <ol class="carousel-indicators hidden-xs">
- <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
- <li data-target="#carousel-example-generic" data-slide-to="1"></li>
- <li data-target="#carousel-example-generic" data-slide-to="2"></li>
- </ol>
-
- <div class="carousel-inner">
- <div class="item active">
- <img class="img-responsive img-full" src="img/slide-1.jpg" alt="">
- </div>
- <div class="item">
- <img class="img-responsive img-full" src="img/slide-2.jpg" alt="">
- </div>
- <div class="item">
- <img class="img-responsive img-full" src="img/slide-3.jpg" alt="">
- </div>
- </div>
-
- <a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
- <span class="icon-prev"></span>
- </a>
- <a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
- <span class="icon-next"></span>
- </a>
- </div>
- <h2 class="brand-before">
- <small>Welcome to</small>
- </h2>
- <h1 class="brand-name">Business Casual</h1>
- <hr class="tagline-divider">
- <h2>
- <small>By
- <strong>Start Bootstrap</strong>
- </small>
- </h2>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="box">
- <div class="col-lg-12">
- <hr>
- <h2 class="intro-text text-center">Build a website
- <strong>worth visiting</strong>
- </h2>
- <hr>
- <img class="img-responsive img-border img-left" src="img/intro-pic.jpg" alt="">
- <hr class="visible-xs">
- <p>The boxes used in this template are nested inbetween a normal Bootstrap row and the start of your column layout. The boxes will be full-width boxes, so if you want to make them smaller then you will need to customize.</p>
- <p>A huge thanks to <a href="http://join.deathtothestockphoto.com/" target="_blank">Death to the Stock Photo</a> for allowing us to use the beautiful photos that make this template really come to life. When using this template, make sure your photos are decent. Also make sure that the file size on your photos is kept to a minumum to keep load times to a minimum.</p>
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis nisl vestibulum dignissim. In hac habitasse platea dictumst. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
- </div>
- </div>
- </div>
- <div class="row">
- <div class="box">
- <div class="col-lg-12">
- <hr>
- <h2 class="intro-text text-center">Beautiful boxes
- <strong>to showcase your content</strong>
- </h2>
- <hr>
- <p>Use as many boxes as you like, and put anything you want in them! They are great for just about anything, the sky's the limit!</p>
- <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc placerat diam quis nisl vestibulum dignissim. In hac habitasse platea dictumst. Interdum et malesuada fames ac ante ipsum primis in faucibus. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
- </div>
- </div>
- </div>
- </div>
-
- <footer>
- <div class="container">
- <div class="row">
- <div class="col-lg-12 text-center">
- <p>Copyright © Your Website 2014</p>
- </div>
- </div>
- </div>
- </footer>
-
- <script src="js/jquery.js"></script>
-
- <script src="js/bootstrap.min.js"></script>
-
- <script>
- $('.carousel').carousel({
- interval: 5000
- })
- </script>
- </body>
- </html>
|