-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vehicles - Home.html
90 lines (77 loc) · 2.43 KB
/
Vehicles - Home.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
<!DOCTYPE html>
<html>
<head>
<title>Vehicles - Home</title>
<link type="text/css" rel="stylesheet" href="styles.css"/>
<meta charset="utf-8"/>
</head>
<body>
<header>
<nav>
<ul>
<li>Home</li>
<li><a href="Airplanes.html">Airplanes</a></li>
<li><a href="Airplane_History.html">Airplane History</a></li>
<li><a href="Ships.html">Ships</a></li>
<li><a href="Ships_History.html">Ship History</a></li>
<li><a href="Trains.html">Trains</a></li>
<li><a href="Train_History">Train History</a></li>
<li><a href="Cars.html">Cars</a></li>
</ul>
</nav>
</header>
<main>
<h1>Vehicles</h1>
<p>
<em>This website</em> is about <strong>Vehicles</strong>.
</p>
<p>In this website we will talk about Airplanes, ships
trains and of course cars.
</p>
<div class="planes">
<h3>Planes</h3>
<p>
Heres a little about Airplanes: They can be used for:
</p>
<ul>
<li>For war</li>
<li>For passengers</li>
<li>and for cargo</li>
</ul>
<img src="passenger_airplane.jpg" alt="An airplane" height="150px", width="250px" />
<img src="f-18_picture.jpg" alt="A jet fighter" height="150px", width="250px" />
<img src="Cargo_Airplane.png" alt="A cargo plane" height="150px", width="250px" />
</div>
<div class="Ships">
<h3>Ships</h3>
<p>
Heres some information about ship and what they can be
used for:
</p>
<ul>
<li>for war</li>
<li>for passengers</li>
<li>for cargo</li>
</ul>
<img src="passenger_ship.jpg" alt="An airplane" height="150px", width="250px" />
<img src="Aircraft_carrier.jpg" alt="An airplane" height="150px", width="250px" />
<img src="container-ship-hd-1920x1200.jpg" alt="An airplane" height="150px", width="250px" />
</div>
<p>
<a href="https://en.wikipedia.org/wiki/Trains">Click here</a> to read about trains on Wikipedia.
</p>
<p>
<a href="https://en.wikipedia.org/wiki/Airplanes">Click here</a> to read about airplanes on Wikipedia.
</p>
<p>
<a href="https://en.wikipedia.org/wiki/Ships">Click here</a> to read about ships on Wikipedia.
</p>
<p>
<a href="https://en.wikipedia.org/wiki/Cars">Click here</a> to read about cars on Wikipedia.
</p>
</ul>
</main>
<footer>
</footer>
</body>
</html>