Sunday, July 17, 2022

Nested list html

<!DOCTYPE html>
<html>
<head>
 <title></title>
 </head>
 <body bgcolor="pink">
  <center>
   <TABLE bgcolor="cyan" border="0px" height="300px" width="300px">
  <tr>
   <td>
   <b><h2>Nested list example</h2></b>
       <ol type="1">
         <li>Week One: Getting Started
          <ul type="CIRCLE">
              <li>How web works</li>
                  <li>Installing Software</li>
                   </ul>
                   </li>
                   <li>Week two: HTML Basics 
                    <ul type="CIRCLE">
                      <li>HTML Overview</li>
                        <li>HTML Text</li>
                          <li>HTML Lists
                             <ul type="disc">
                                 <LI>Quiz</LI>
                                     <LI>Assignment</LI>
                                        </ul>
                                          </li>
                                           </ul>
                                           </li>
                                  <li>Week Three: CSS Basics
                                            <ul type="CIRCLE">
                                              <li>CSS Overview</li>
                                                <li>CSS Selectors</li>
                                                 </ul>
                                                 </li>
                                                 </ol>
                                                 </td>
                                                 </tr>
                                                 </TABLE>
                                                 </center>
                                                 </body>
                                                 </html>

No comments:

Post a Comment