ptg16476052
218 LESSON 9: Using Images on Your Web Pages
<style type="text/css">
img { vertical-align: middle; }
ul { padding: 0; }
</style>
</head>
<body>
<h1>Removing Spark Plugs</h1>
<p>(include some info about spark plugs here)</p>
<ul id="bottom-links">
<li>
<a href="index.html"><img src="Up.png" alt="Up"></a>
Up to index
</li>
<li>
<a href="ready.html"><img src="Right.png" alt="Left"></a>
On to "Gapping the New Plugs"
</li>
<li>
<a href="replacing.html"><img src="Left.png" alt="Right"></a>
Back to "When You Should Replace your Spark Plugs"
</li>
</ul>
</body>
</html>
See Figure 9.13 for the final menu.
Output ▼
FIGURE 9.13
The basic page
with iconic links
and text.
▼
▲