-
Notifications
You must be signed in to change notification settings - Fork 0
/
skylark.php
109 lines (97 loc) · 4.2 KB
/
skylark.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
<!DOCTYPE html>
<html>
<head>
<?php include_once './head.php'; ?>
<?php include_once './head-styles-inventory.php'; ?>
</head>
<body>
<div class="container-fluid">
<?php include_once './header.php'; ?>
<?php include_once './feedback-template.php'; ?>
<div class="container container-first">
<div class="row">
<div class="container">
<h1 style="color: #C0C0C0">Skylark</h1>
<hr>
</div>
</div>
<!-- Product Picture -->
<div class="row">
<div class="col-sm-6">
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="SkyLark/pictures/Bartini_unnamed_2.jpg" alt="Skylark Image 1">
</div>
<div class="carousel-item">
<img src="SkyLark/pictures/flying car bartini 3.jpg" alt="Skylark Image 2">
</div>
<div class="carousel-item">
<img src="SkyLark/pictures/flying car bartini1.jpg" alt="Skylark Image 3">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<!-- Product Specs -->
<div class="col-sm-6">
<div class="container" style="width:100%">
<h2 style="text-align:left; color: #F0F0F0;">Tech Specs</h2>
<table class="table" style="table-layout:fixed; color: #F0F0F0;">
<tbody>
<tr>
<td><b>Acceleration</b></td>
<td>0 - 100 km/h < 3.5 sec <br> 0 - 200 km/h <12 sec </td>
</tr>
<tr>
<td><b>Top Speed</b></td>
<td> >250 km/h </td>
</tr>
<tr>
<td><b>Power</b></td>
<td> > 440 kW (> 600hp) </td>
</tr>
<tr>
<td><b>Range</b></td>
<td> > 500 km (300 miles) </td>
</tr>
<tr>
<td><b>System voltage</b></td>
<td> 800V </td>
</tr>
<tr>
<td><b>Charging time </b></td>
<td>80% in < 15 min</td>
</tr>
<tr>
<td><b>Price</b></td>
<td>$50,000 (Cash Preferred)</td>
</tr>
<tr>
<td><b>Description/Details</b></td>
<td>
In the Concept Study Mission E, principles come to bear which have actually been intrinsic to every Porsche since the birth of the 356 in 1948: lightness, openness, purism, clear architecture, driver-orientation and day-to-day usability.
</td>
</tbody>
</table>
</div>
</div>
</div>
</div>
<?php include_once './scripts.php'; ?>
</div>
</body>
</html>