-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlist.html
35 lines (29 loc) · 817 Bytes
/
list.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello, world!</title>
</head>
<body>
<ol>
<li> 1966 Ford Galaxie XL
<li> 1966 Ford Galaxie XL (Pro Street)
<li> 1966 Ford LTD
</ol>
<ul>
<li> 1966 Ford Galaxie 7 Litre convertible
<li> 1966 Ford Fairlane XL
<li> 1973 Mercury Montego GT
</ul>
<dl>
<dt>Galaxie</dt>
<dd>
Ford's full-size car from 1959-1974. Some additional names would be applied in different years, like "Starliner" and "LTD", but mostly they're known as "Galaxie" (note the non-standard spelling).
</dd>
<dt>LTD</dt>
<dd>
In 1966, although the "LTD" was technically a different model, it's really just a Galaxie with "luxury" trim.
</dd>
</dl>
</body>
</html>