HTML ETP

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

LIST

<html>
<head>
<title>list</title>
</head>
<body>
<h1> Unordered List </h1>
<ul type="circle" > <!---type=circle/disc/square-->
<li>Mango</li>
<li>Apple</li>
<li> Grapes</li>
</ul>
<h1> Ordered List </h1>
<ol type="a" start=4> <!--type=1/a/A/i/I--->
<li>Mango</li>
<li>Apple</li>
<li> Grapes</li>
</ol>

</body>
</html>

ROW SPAN COLOUM SPAN

<!doctype html>
<html>
<head>
<title>Tables</title>
</head>
<body>
<table border=2 height=100 width=100 cellspacing=10 cellpadding=10>
<tr>
<th>Name</th> <!----th=table heading, tr=table row, td=table data----->
<th> Class</th>
<th> Address</th>
<th> Pincode</th>
</tr>
<tr>
<td>XYZ</td>
<td>CSE326</td>
<td rowspan=2 colspan=2 bgcolor="red"> Phagwara144411</td>
</tr>
<tr>
<td>ABC</td>
<td>CSE326</td>
</tr>
<tr>
<td colspan=4 align="center" bgcolor="blue"> NA </td>
</tr>
</table>
</body>
</html>

You might also like