-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (32 loc) · 1.51 KB
/
test.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
<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
<!-- Маркеры слайдов -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
</ol>
<!-- Содержимое слайдов -->
<div class="carousel-inner">
<div class="item active">
<img src="img/prev_diptych_mastera.jpg" alt="...">
<div class="carousel-caption">
<h3>Россия (Москва)</h3>
<p>Где это видано, чтобы люди в Москве без прописки проживали.</p>
</div>
</div>
<div class="item">
<img src="img/prev_diptych_marina_ruben.png" alt="...">
<div class="carousel-caption">
<h3>Осень</h3>
<p>Осень — это вторая весна, когда каждый лист — цветок.</p>
</div>
</div>
</div>
<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>