-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhomepage.html
79 lines (68 loc) · 2.98 KB
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>David Kent Group</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-1"></div>
<div class="col-md-10">
<ul class="nav nav-pills" style="padding:1.0em">
<li><a href="homepage.html">Home</a></li>
<li><a href="recent_projects.html">Recent Projects</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</div>
</div>
</ul>
<div class="jumbotron">
<h1>The David Kent Group</h1>
<p>David Kent Group of Edinburgh are property renovation specialists and highly-skilled craftsmen who are expert in all trades including building, joinery, plumbing, decorating and plasterwork.
We have been a family run business since 1997. We work to architect specifications, and for property developers and private clients. All of our staff offer a friendly service.
We are an all trades company with our own workshop. All work is guaranteed.
We provide free estimates. We are members of the Federation of Master Builders, Construction Line, and Sepa.</p>
</div>
</div>
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- 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>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="photo1.jpg" alt="First slide" width="100%" style="padding:1.0em">
<div class="container">
</div>
</div>
<div class="item">
<img src="photo3.jpg" alt="Second slide" width="100%" style="padding:1.0em">
<div class="container">
</div>
</div>
<div class="item">
<img src="photo9.jpg" alt="Third slide" width="100%" style="padding:1.0em">
<div class="container">
</div>
</div>
</div>
<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><!-- /.carousel -->
</body>
</html>