Created
June 27, 2017 15:39
-
-
Save annibuliful/fa1adfa3ef70e8e462a925484e1b14f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<div class="col-md-7 w3-animate-zoom"> | |
<br><br><br> | |
<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> | |
<!-- Wrapper for slides --> | |
<div class="carousel-inner"> | |
<div class="item active"> | |
<img src="http://i.imgur.com/SnX9vxf.png" alt="Los Angeles" style="width:100%;"> | |
</div> | |
<div class="item"> | |
<img src="http://i.imgur.com/W1os9vV.png" alt="Chicago" style="width:100%;"> | |
</div> | |
<div class="item"> | |
<img src="http://i.imgur.com/vYS05Ek.png" alt="New york" style="width:100%;"> | |
</div> | |
</div> | |
<!-- Left and right controls --> | |
<a class="left carousel-control" href="#myCarousel" data-slide="prev"> | |
<span class="glyphicon glyphicon-chevron-left"></span> | |
<span class="sr-only">Previous</span> | |
</a> | |
<a class="right carousel-control" href="#myCarousel" data-slide="next"> | |
<span class="glyphicon glyphicon-chevron-right"></span> | |
<span class="sr-only">Next</span> | |
</a> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment