<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Table and Lists</title>
</head>
<body>
<!-- unorderd list in three types "disc,circle, squre, " -->
<ul type="squre">
<li>This is my first unordered list</li>
<ol>
<li>sub lists 1</li>
</ol>
<ol>
<li>sub lists 2</li>
</ol>
<ol>
<li>sub lists 3</li>
</ol>
<li>This is my second unordered list</li>
<li>This is my third unordered list</li>
</ul> <br>
<!-- ordered lists are many types. -->
<ol type="A">
<li>This is my first ordered list</li>
<li>This is my second ordered list</li>
<li>This is my third ordered list</li><br>
</ul>
<!-- Table = Makes table with 2 parts that HEADS and BODY -->
<table>
<!-- Fill head data to use tags "thead" and "th" -->
<!-- data in fill in "th" tages-->
<thead>
<th>Name</th>
<th>Subjent</th>
<th>Class</th>
</thead>
<tbody>
<!-- insert table row to use tag "tr" -->
<!-- and fill data to use tag "td" -->
<tr>
<td>Rajendra</td>
<td>Geography</td>
<td>15th</td>
</tr>
<tr>
<td>Chanchal</td>
<td>History</td>
<td>17th</td>
</tr>
<tr>
<td>Rakesh</td>
<td>Polotechnic</td>
<td>Final</td>
</tr>
</tbody>
</head>
</table>
</body>
</html>
Comments
Post a Comment