-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
93 lines (73 loc) · 3.19 KB
/
index2.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!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, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<title>Linear Cost Consultants Ltd </title>
</head>
<body>
<div class="container">
<div class="row">
<section class="col-12">
<style>
#featured .carousel-item img {
width: 100%;
height: 100%;
}
</style>
<div class="content container">
<div class="row">
<section class="col-sm-12">
<div class="carousel slide" id="featured" data-ride="carousel">
<div class="carousel-inner">
<ol class="carousel-indicators">
<li data-target="#featured" data-slide-to="0"></li>
<li data-target="#featured" data-slide-to="1" class="active"></li>
<li data-target="#featured" data-slide-to="2"></li>
</ol>
<div class="carousel-item">
<img class="img-fluid" src="images/carousel-lifestyle.jpg" alt="Lifestyle Photo">
</div><!-- carousel-item -->
<div class="carousel-item active">
<img class="img-fluid" src="images/carousel-fish.jpg" alt="Mission">
<div class="carousel-caption d-none d-md-block">
<h3>Pete, <small>owner of McAllister</small></h3>
<p>"Wisdom Pet Medicine is the only clinic around that will even book pet fish for appointments."</p>
</div>
</div><!-- carousel-item -->
<div class="carousel-item">
<img class="img-fluid" src="images/carousel-vaccinations.jpg" alt="Vaccinations">
</div><!-- carousel-item -->
<a class="carousel-control-prev" href="#featured"
role="button" data-slide="prev">
<span class="carousel-control-prev-icon"
aria-hidden="true">
<span class="sr-only">Previous</span>
</span>
</a>
<a class="carousel-control-next" href="#featured"
role="button" data-slide="next">
<span class="carousel-control-next-icon"
aria-hidden="true">
<span class="sr-only">Previous</span>
</span>
</a>
</div><!-- carousel-inner -->
</div><!-- carousel -->
<h2>Our Mission</h2>
<p>Wisdom Pet Medicine strives to blend the best in traditional and alternative medicine in the diagnosis and treatment of companion animals including dogs, cats, birds, reptiles, rodents, and fish. We apply the wisdom garnered in the centuries old tradition of veterinary medicine, to find the safest treatments and cures.</p>
<p>We strive to be your pet's medical experts from youth through the senior years. We build preventative health care plans for each and every one of our patients, based on breed, age, and sex, so that your pet receives the most appropriate care at crucial milestones. We want to give your pet a long and healthy life.</p>
</section>
</div><!-- row -->
</div><!-- content container -->
</section>
</div><!-- row -->
</div><!-- content container -->
<script src="js/jquery.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>