Created
August 26, 2015 15:47
-
-
Save codigoconjuan/e2a554c9ef67c19c292a to your computer and use it in GitHub Desktop.
Gist for Derek Lee
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
<section id="slider" class="carousel slide" data-ride="carousel"> | |
<div class="carousel-inner"> | |
<div class="item active"> | |
<img src="img/slider_1.png"> | |
</div> | |
<div class="item"> | |
<img src="img/slider_1.png"> | |
</div> | |
<div class="item"> | |
<img src="img/slider_1.png"> | |
</div> | |
</div> | |
<a class="left carousel-control" href="#slider" role="button" data-slide="prev"> | |
<span class="glyphicon glyphicon-chevron-left"></span></a> | |
<a class="right carousel-control" href="#slider" role="button" data-slide="next"> | |
<span class="glyphicon glyphicon-chevron-right"></span> | |
</a> | |
<ol class="carousel-indicators"> | |
<li data-target="#slider" data-slide-to="0" class="active"></li> | |
<li data-target="#slider" data-slide-to="1"></li> | |
<li data-target="#slider" data-slide-to="2"></li> | |
</ol> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment