Advertisements
Advertisements
Question
Write the HTML code to design the web page as shown below (Table border should be 2, height = 100 and width = 300 with cellpadding = 20):
Code Writing
Solution
<html>
<head>
<title> Working with table
</title>
</head>
<body>
<TABLE BORDER="2" HEIGHT="100" WIDTH="300"
CELLPADDING="20" >
<TR><TH COLSPAN="3" ALIGN="CENTER">EMPLOYEE
TABLE</TH> </TR>
<tr>
<td>EMPLOYEE ID </td>
<td>EMPLOYEE NAME</td>
<td>DEPARTMENT</td>
</tr>
<tr>
<td>1</td>
<td>ANKIT</td>
<td>SALES</td>
</tr>
<tr>
<td>2</td>
<td>HEMA</td>
<td>HR</td>
</tr>
<tr>
<td>3</td>
<td>MANISH</td>
<td>FINANCE</td>
</td>
</body>
</html>
shaalaa.com
Is there an error in this question or solution?