-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomiser.html
53 lines (50 loc) · 3.08 KB
/
customiser.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Custom Controls for Fabric.js</title>
<link rel="stylesheet" href="dist/assets/css/customiser.css">
<link href="https://cdn.quilljs.com/1.3.6/quill.snow.css" rel="stylesheet">
</head>
<body>
<section class="testimonial text-center">
<div class="container">
<div class="heading white-heading">
Testimonial
</div>
<div id="testimonial4" class="carousel slide testimonial4_indicators testimonial4_control_button thumb_scroll_x swipe_x" data-ride="carousel" data-pause="hover" data-interval="5000" data-duration="2000">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" />
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 1</h4>
</div>
</div>
<div class="carousel-item">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" /><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 2</h4>
</div>
</div>
<div class="carousel-item">
<div class="testimonial4_slide">
<img src="https://i.ibb.co/8x9xK4H/team.jpg" class="img-circle img-responsive" />
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
<h4>Client 3</h4>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#testimonial4" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#testimonial4" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
</section>
</body>
</html>