-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
38 lines (33 loc) · 1.46 KB
/
home.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<div id="myCarousel" class="carousel slide" data-ride="carousel" style="margin-top: 20px">
<!-- 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>
<li data-target="#myCarousel" data-slide-to="3"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="Gallery/waterfall_scenery-wallpaper-.jpg" alt="Chania" style="width: 100%;height: 100%">
</div>
<div class="item">
<img src="Gallery/flowers sceneries wallpapers.jpg" alt="Chania" style="width: 100%;height: 100%">
</div>
<div class="item">
<img src="Gallery/china.jpg" alt="Flower" style="width: 100%;height: 100%">
</div>
<div class="item">
<img src="Gallery/waterfall_scenery-wallpaper-.jpg" alt="Flower" style="width: 100%;height: 100%">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" 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="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>