Lists And Tables(HTML)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tables and Lists</title>
</head>
<body>
<!-- lists -->
<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>
<li>another four</li>
</ul>
<li>This is third item of my unordered list</li>
<li>This is fourth item of my unordered list</li>
</ul>
<ol type="A">
<li>This is first item of my unordered list</li>
<li>This is second item of my unordered list</li>
<ol>
<li>another one</li>
</ol>
<li>This is third item of my unordered list</li>
<li>This is fourth item of my unordered list</li>
</ol>
<!-- tables -->
<h3>HTML Table</h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>industry</th>
<th>project</th>
</tr>
</thead>
<tbody>
<tr>
<td>Suraj</td>
<td>cse</td>
<td>data scientist</td>
</tr>
<tr>
<td>Saurabh</td>
<td>cse</td>
<td>novacorp</td>
</tr>
<tr>
<td>suraj</td>
<td>cse</td>
<td>fastrack millionier</td>
</tr>
</tbody>
</table>
</body>
</html>
Comments
Post a Comment