mirror of
https://github.com/dawidolko/Website-Templates.git
synced 2025-10-28 00:03:10 +01:00
123 lines
4.1 KiB
HTML
123 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title>Starter Template for Bootstrap</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
<link href="css/bootstrap.css" rel="stylesheet">
|
|
|
|
<!-- Add custom CSS here -->
|
|
<link href="css/full-slider.css" rel="stylesheet">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<nav class="navbar navbar-fixed-top navbar-inverse" role="navigation">
|
|
<div class="container">
|
|
<div class="navbar-header">
|
|
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-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="index.php">Start Bootstrap</a>
|
|
</div>
|
|
|
|
<!-- Collect the nav links, forms, and other content for toggling -->
|
|
<div class="collapse navbar-collapse navbar-ex1-collapse">
|
|
<ul class="nav navbar-nav">
|
|
<li><a href="#about">About</a></li>
|
|
<li><a href="#services">Services</a></li>
|
|
<li><a href="#contact">Contact</a></li>
|
|
</ul>
|
|
</div><!-- /.navbar-collapse -->
|
|
</div><!-- /.container -->
|
|
</nav>
|
|
|
|
<div id="myCarousel" class="carousel slide">
|
|
<!-- 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>
|
|
|
|
<!-- Wrapper for slides -->
|
|
<div class="carousel-inner">
|
|
<div class="item active">
|
|
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide One');"></div>
|
|
<div class="carousel-caption">
|
|
<h1>A Full-Width Image Slider Template</h1>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Two');"></div>
|
|
<div class="carousel-caption">
|
|
<h1>Caption 2</h1>
|
|
</div>
|
|
</div>
|
|
<div class="item">
|
|
<div class="fill" style="background-image:url('http://placehold.it/1900x1080&text=Slide Three');"></div>
|
|
<div class="carousel-caption">
|
|
<h1>Caption 3</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Controls -->
|
|
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
|
|
<span class="icon-prev"></span>
|
|
</a>
|
|
<a class="right carousel-control" href="#myCarousel" data-slide="next">
|
|
<span class="icon-next"></span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="container">
|
|
|
|
<div class="row section">
|
|
<div class="col-lg-12">
|
|
<h1>A Full Width Image Slider Template</h1>
|
|
<p>This is a great starting point for yet another modern and stylish website. Here are some things to consider when working with this template:</p>
|
|
<ul>
|
|
<li>Unique Fonts</li>
|
|
<li>Attractive Colors</li>
|
|
<li>Content Spacing for Legibility and Design</li>
|
|
<li>Decent Pictures that Still Load Quickly (less than 400KB for example)</li>
|
|
<li>Make the Pictures INFORMATIVE</li>
|
|
<li>Custom Styling for the Captions</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<footer>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<p>Copyright © Company 2013</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
</div><!-- /.container -->
|
|
|
|
<!-- JavaScript -->
|
|
<script src="js/jquery-1.10.2.js"></script>
|
|
<script src="js/bootstrap.js"></script>
|
|
|
|
<!-- Script to Activate the Carousel -->
|
|
<script>
|
|
$('.carousel').carousel({
|
|
interval: 5000 //changes the speed
|
|
})
|
|
</script>
|
|
</body>
|
|
</html> |