Setting Up the HTML CodeThe HTML code for this lesson is comprised of an overall <div> container, a heading, and two paragraphs. The <div> is styled with a pullquote id, and the second paragraph is styled with a furtherinfo class as shown in Listing 17.1. <div id="pullquote">
<h2>Heading here</h2>
<p>
Lorem ipsum dolor sit amet...
</p>
<p class="furtherinfo">
<a href="#">More information</a>
</p>
</div>
|
| |||||||||||||||||||