-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtaxis.html
95 lines (92 loc) · 3.3 KB
/
taxis.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
94
95
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<title>Wedding Info</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div class="main-container">
<div class="navigation">
<a class="menu-button" href="index.html">
<strong>General Info</strong>
</a>
<a class="menu-button" href="location.html">
<strong>Location</strong>
</a>
<a class="menu-button" href="hotels.html" class="menu-button">
<strong>Hotels</strong>
</a>
<a class="menu-button current-page" href="taxis.html">
<strong>Taxis</strong>
</a>
</div>
<div class="splashscreen"><img class="top-graphic" src="./images/flowers.png" alt='flowers'></div>
<div class="grid-container">
<div class="infotext">
<h1>Taxis</h1>
<p>THE FOLLOWING IS A LIST OF TAXI COMPANIES BY LOCATION AS PROVIDED BY COMBE MANOR. AS SUCH THE LIST IS NON-EXHAUSTIVE, OTHER
FIRMS MIGHT BE AVAILABLE BUT MAY NOT NECESSARILY KNOW THE VENUE.</p>
<h1>Andover</h1>
<p class="taxi">1-2 CALL CABS
<br>
(01264 355959)
</p>
<p class="taxi">BOURNE VALLEY CARS *
<br>
(01264 736155)
</p>
<h1>Basingstoke</h1>
<p class="taxi">SAM'S PRIVATE HIRE
<br>
(07531 105092)
</p>
<h1>Hungerford</h1>
<p class="taxi">1ST DIRECT CARS
<br>
(01488 681182)
</p>
<p class="taxi">FOUR OAKS *
<br>
(07478 699313)
</p>
<h1>Ludgershall</h1>
<p class="taxi">COLLIN'S TAXIS
<br>
(07710 239282)
</p>
<h1>Marlborough</h1>
<p class="taxi">CMJT CHAUFFEUR
<br>
(07974 211578)
</p>
<h1>Newbury</h1>
<p class="taxi">AVE CABS
<br>
(01635 31212)
</p>
<p class="taxi">BROADWAY CARS *
<br>
(01635 847784)
</p>
<p class="taxi">CABCO
<br>
(01635 533333)
</p>
<p class="taxi">GEEGEE'S *
<br>
(07713 241455)
</p>
<p class="taxi">JOHN B'S
<br>
(01635 246486)
</p>
<p>N.B. ANY COMPANY NAME FOLLOWED BY AN ASTERISK (*) INDICATES A COMPANY KNOWN
TO HAVE VEHICLES WITH MORE THAN 4 SEATS.</p>
</div>
</div>
</div>
<div class="footer"><img class="bottom-graphic" src="./images/footer.png" alt='footer'></div>
</body>
</html>