Приглашаем посетить
Чернышевский (chernyshevskiy.lit-info.ru)

Setting Up the HTML Code

Previous Page
Table of Contents
Next Page

Setting Up the HTML Code

The 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.

Listing 17.1. HTML Code Containing the Markup for a Round-Cornered Box
<div id="pullquote">
    <h2>Heading here</h2>
    <p>
        Lorem ipsum dolor sit amet...
    </p>
    <p class="furtherinfo">
        <a href="#">More information</a>
    </p>
</div>


Previous Page
Table of Contents
Next Page