-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
134 lines (103 loc) · 6.73 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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="css/style.css" media="screen">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
<script src="js/colpick.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/colpick.css" type="text/css"/>
<script src = "js/usersChoice.js"></script>
</head>
<body background="images/background.jpg" >
<?php
include('interface.php');
?>
<p>
<table border ="1" align="center">
<tr>
<th > <div class = "table_header"></div> </th>
<th > <div class = "table_header"> Model </div> </th>
<th > <div class = "table_header">Year </div></th>
<th > <div class = "table_header">Price </div></th>
</tr>
<tr>
<td>
<a href="form.html" title="Lamborghini"><img src="images/lamborghini_aventador1.jpg" width = "300px" height = "200px" title="Lamborghini avendator" alt="Nice lamborghini" /></a>
</td>
<td bgcolor = "grey" >
<div class = "table_content">Gallardo LP 560-4 Spyder </div>
<li>ESP: Full ESP system with ABS, ASR </li>
<li>Steering: Power-assisted rack and pinion</li>
<li>Front tires: Pirelli PZero 235/35 ZR 19</li>
<li>Rear tires: Pirelli PZero 295/30 ZR 19</li>
<li>Front wheels: Aluminium alloy 8.5" x Ø 19"</li>
</td>
<td bgcolor = "grey" class = "table_content" > 2013 </td>
<td bgcolor = "grey" class = "table_content" ><center > € 2.5 milion </center></td>
</tr>
<tr>
<td>
<a href="form.html" title="Lamborghini"><img src="images/lamborghini_aventador2.jpg" width = "300px" height = "200px" title="Lamborghini avendator" alt="Nice lamborghini" /></a>
</td>
<td bgcolor = "grey">
<div class = "table_content">Sesto Elemento </div>
<li>Gas Mileage: 11.5 L/100 KM </li>
<li>Engine: 5.2L V10 DOHC 40-valve</li>
<li>Horsepower: 570 @ 8000</li>
<li>Bodystyle: Coupe</li>
<li>Transmission: 6 speed automatic </li>
</li>
</td>
<td class = "table_content" bgcolor = "grey">2013 </td>
<td class = "table_content" bgcolor = "grey"><center> € 2.5 milion </center></td>
</tr>
<tr>
<td>
<a href="form.html" title="Lamborghini"><img src="images/lamborghini_aventador3.jpg" width = "300px" height = "200px" title="Lamborghini avendator" alt="Nice lamborghini" /></a>
</td>
<td bgcolor = "grey">
<div class = "table_content">Aventador LP 720-4 Anniversario </div>
<li>ESP: ESP/ ABS with different charecteristics </li>
<li>Steering: Steering Gear with 3 charcteristics</li>
<li>Front tires: Pirelli 255/35 ZR19</li>
<li>Rear tires: Pirelli 335/30 ZR20</li>
<li>Front wheels: 20'' x 12J</li>
</td>
<td class = "table_content" bgcolor = "grey">2013 </td>
<td class = "table_content" bgcolor = "grey"><center> € 2.5 milion </center></td>
</tr>
<tr>
<td>
<a href="form.html" title="Lamborghini"><img src="images/lamborghini_aventador4.jpg" width = "300px" height = "200px" title="Lamborghini avendator" alt="Nice lamborghini" /></a>
</td>
<td bgcolor = "grey">
<div class = "table_content">Aventador J Unica </div>
<li>Engine: 6.5-liter V-12 </li>
<li>Horsepower: 691 hp @ 8,250 rpm</li>
<li>Torque: 509 lb-ft @ 5,500 rpm</li>
<li>Tires: 255/35R-19, Rear: 335/30R-20</li>
<li>Front wheels: Aluminium alloy 8.5" x Ø 19"</li>
</td>
<td class = "table_content" bgcolor = "grey">2013 </td>
<td class = "table_content" bgcolor="grey"><center> € 2.5 milion </center></td>
</tr>
<tr>
<td>
<a href="form.html" title="Lamborghini"><img src="images/lamborghini_aventador5.jpg" width = "300px" height = "200px" title="Lamborghini avendator" alt="Nice lamborghini" /></a>
</td>
<td bgcolor = "grey">
<div class = "table_content">Gallardo LP 570-4 </div>
<li>ESP: Full ESP system with ABS, ASR and ABD </li>
<li>Steering: Power-assisted rack and pinion</li>
<li>Front tires: Pirelli P Zero Corsa 235/35 ZR 19</li>
<li>Rear tires: Pirelli P Zero Corsa 295/30 ZR 19</li>
<li>Front wheels: Aluminium alloy 8.5" x Ø 19"</li>
</td>
<td class = "table_content" bgcolor = "grey">2013 </td>
<td class = "table_content" bgcolor = "grey"><center> € 2.5 milion </center></td>
</tr>
</table>
</p>
</div>
</body>
</html>