0% found this document useful (0 votes)
15 views2 pages

HTML Structure: Lists and Tables

The document contains examples of unordered lists, ordered lists, and a table. An unordered list contains items with sub-items. An ordered list numbers the three items. A table includes a header row and two data rows listing names, employee IDs, and roles.

Uploaded by

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

HTML Structure: Lists and Tables

The document contains examples of unordered lists, ordered lists, and a table. An unordered list contains items with sub-items. An ordered list numbers the three items. A table includes a header row and two data rows listing names, employee IDs, and roles.

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<tittle>Tables and Lists</tittle>
</head>
<body>
<ul type = "circle">

<li>This is First item of my unordered list</li>


<li>This is Second item of my unordered list</li>
<ul>
<li>Another one</li>
<li>Another two</li>
<li>Another three</li>
</ul>

<li>This is Third item of my unordered list</li>


</ul>

<ol type="I">
<li>This is First item of my unordered list</li>
<li>This is Second item of my unordered list</li>
<li>This is Third item of my unordered list</li>

</ol>

<!--Table-->
<center><h3><font color = "gray">HTML Table </h3>
<Table>
<Thread>
<tr>
<th> Name </th>
<th> Employee ID </th>
<th> Employee Role </th>
</tr>
</thread>
<tbody>

<tr>
<td> Harry </td>
<td> 34343 </td>
<td> Programmer </td>
</tr>

<tr>
<td> Shubham </td>
<td> 7564</td>
<td> Android Developer </td>
</tr>
</center>
</tbody>
</table>
</body>
</html>

You might also like