Using a Table to Center a List

Open schedule.html.  Add the table tags (shown below in red) to your code.  (Remove any <blockquote> and </blockquote> tags that you may have used.) Save as centerSchedule.html in your pages folder. Tables are often used on web pages to apply structure to a page, allowing lists to be centered or text to be formatted into columns.  Notice that tables that are used for formatting purposes do not have borders.
 

<html>
<head>
<title>Mrs. G's Schedule</title>
</head>
<body>
<table align="center">
    <tr>
        <td>
            <ol>
            <li>Computer Applications I
            <li>Computer Applications I and II
            <li>Computer Applications I
            <li>Prep
            <li>Computer Applications I
            <li>Web Design
            </ol>
        </td>
    </tr>
</table>
</body>
</html>

Back to the Week 6 Schedule