-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·49 lines (31 loc) · 1.53 KB
/
index.php
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
<?php include('includes/header.php'); ?>
<!-- header -->
<div id="header">
<!-- title -->
<div class="row">
<div class="col-md-3 pull-left"><img src="img/banner-left.png"></div>
<div class="col-md-6"><h1>Boyd's Used Motors</h1></div>
<div class="col-md-3 pull-right"><img src="img/banner-right.png"></div>
</div>
<!-- motd -->
<h2 id="motd">A name you can surely trust!</h2>
<!-- navigation -->
<?php include('includes/navigation.php'); ?>
</div><!-- /header -->
<!-- main content -->
<div id="content" class="row">
<div class="col-md-7">
<p>Welcome to Boyd's Used Motors!!! We have some of the finest cars with only minor problems.</p>
<p>We have been voted best car company in the UK by our employees 8 years running. <br/>Boyd's Used Motors has been running for over 13 years selling reliable used cars to the first person to walk in the door.</p>
<p>We saw you coming and made a special price just for you! That's the quality service you can expect from our friendly staff.</p>
</div>
<!-- sidebar -->
<div id="sidebar" class="col-md-4 pull-right">
<img src="img/sales-boyd.png" width="100%" class="img-rounded"></img>
<p class="caption text-muted">Our trustworthy staff, sales lad Boyd!</p>
<img src='img/car-blue.png' id="car" height="256px" />
<h4>View our range of colours available for new cars today!</h4>
<p class="btn btn-primary" onClick="changeCar()">Click here to get a random car colour</p>
</div><!-- /sidebar -->
</div><!-- /main content -->
<?php include('includes/footer.php'); ?>