0% found this document useful (0 votes)
7 views10 pages

6 Tables

Uploaded by

kejogef328
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
7 views10 pages

6 Tables

Uploaded by

kejogef328
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

Tables and Lists

Unordered List  <ul>


<!-- Unordered lists -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<li>  used to give list item
Ordered List  <ol>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
Ordered List  <ol> with Type
• Type Attribute used to give which order you want to make a list ex (A
or a or i or 1)
<ol type=‘A’>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ol>
Nested lists  List inside a List

<ul>
<li>Item 1</li>
<li>Item 2
<ul>
<li>Nested Item 1</li>
<li>Nested Item 2</li>
</ul>
</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
Table  which is used to make row and
column
• <table> intimate to start with Table
• <thead> Table Header
• <tbody> Table Body
• <tr> Table Row
• <td> Table Description
th

tr

tr
td
tr
Width  width of the Table
Align  Left side it will start
Good Job
Next Topic: Forms and Entities

You might also like