Created
October 15, 2018 06:09
-
-
Save avinashseth/e8e58b85a0615001256cd5bae18bb7c7 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 id="carousel-example" class="carousel slide" data-ride="carousel"> | |
| <!-- start indicators --> | |
| <ol class="carousel-indicators"> | |
| <li data-target="#carousel-example" data-slide-to="0" class="active"></li> | |
| <li data-target="#carousel-example" data-slide-to="1"></li> | |
| <li data-target="#carousel-example" data-slide-to="2"></li> | |
| </ol> | |
| <!-- end indicators --> | |
| <!-- coursel images --> | |
| <div class="carousel-inner" role="listbox"> | |
| <div class="item active"> | |
| <img src="http://placehold.it/600x200" alt="..."> | |
| <div class="carousel-caption"> | |
| <h3>Title</h3> | |
| <p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Atque tempora aliquam perferendis | |
| nam vero fuga quasi omnis commodi laudantium similique fugit, quos alias ea pariatur | |
| minus officia suscipit sapiente itaque!</p> | |
| </div> | |
| </div> | |
| <div class="item"> | |
| <img src="http://placehold.it/600x200" alt="..."> | |
| <div class="carousel-caption"></div> | |
| </div> | |
| <div class="item"> | |
| <img src="http://placehold.it/600x200" alt="..."> | |
| <div class="carousel-caption"></div> | |
| </div> | |
| </div> | |
| <!-- carousel images --> | |
| <!-- carousel controls --> | |
| <a class="left carousel-control" href="#carousel-example" role="button" data-slide="prev"> | |
| <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> | |
| <span class="sr-only">Previous</span> | |
| </a> | |
| <a class="right carousel-control" href="#carousel-example" role="button" data-slide="next"> | |
| <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> | |
| <span class="sr-only">Next</span> | |
| </a> | |
| <!-- carousel controls --> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment