-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path03-css-print.html
72 lines (58 loc) · 2.6 KB
/
03-css-print.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>CSS</title>
<style>
p {
color: red;
}
@media screen {
p {
color: blue;
}
}
@media print {
body {
font-size: 16pt;
color: black;
}
img {
display: none;
}
}
@media screen and (min-width: 500px) and (max-width: 1200px) {
h1 {
color: red;
}
}
/*
see http://www.w3schools.com/css/css_mediatypes.asp
*/
</style>
</head>
<body>
<h1>CSS</h1>
<p class="car">The <em>Ford GT</em> began as a concept car designed in anticipation of the automaker's centennial
year and as part of its drive to showcase and revive its "heritage" names such as <em>Mustang</em> and
Thunderbird. At the 1995 Detroit Auto Show, the Ford GT90 concept was shown. At the 2002 auto show, Ford unveiled
a new GT40 Concept car. Camilo Pardo, the head of Ford's "Living Legends" studio, is credited as the chief
designer of the GT and worked under the guidance of J Mays. Carroll Shelby was brought in by Ford to help develop
the Ford GT; which included performance testing of the prototype car. While the project was still secret, it was
called Petunia.
The GT is similar in outward appearance to the original Ford GT40 cars, but bigger, wider, and most importantly 3
in (76 mm) taller than the original 40 in (100 cm); as a result, a potential name for the car was the GT43.
Although the cars are visually related, structurally, there is no similarity between the modern GT and the 1960s
GT40 that inspired it. Three production prototype cars were shown in 2003 as part of Ford's centenary, and
delivery of the production Ford GT began in the fall of 2004.
A British company, Safir Engineering, who built continuation GT40s in the 1980s, owned the "GT40" trademark at
that time. When they completed production, they sold the excess parts, tooling, design, and trademark to a small
Ohio company called Safir GT40 Spares. This company licensed the use of the "GT40" trademark to Ford for the
initial 2002 show car. When Ford decided to make the production vehicle, negotiations between the two firms
failed. The production cars do not wear the GT40 badge.</p>
<img src="images/gt.jpg" alt="Ford GT" width="1280" height="784"/>
<p class="source">Source: <a href="http://en.wikipedia.org/wiki/Ford_GT">http://en.wikipedia.org/wiki/Ford_GT</a>
</p>
<em>Jiří Hradil</em>
</body>
</html>