Create a code in an HTML to display the following table on a web page using following information. The border should be of blue colour and 5 pixel thick, the space between table content and their border should be 10 pixels and the Height of table header should be 100 pixels
Attachments:
Answers
Answered by
5
Question:-
Write a HTML code to display the following output.
Code:-
This is the required code.
For verification, I have posted two attachments.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8"/>
<title>HTML Tables
</title>
</head>
<body>
<p align="center">MY TABLE</p>
<table border=5, bordercolor="blue" align=center cellpadding="10" style="text-align: center;">
<tr style="height: 100px;">
<td>Sl. No.
<td>STATE
<td>CAPITAL
</tr>
<tr>
<td>1
<td>UTTAR PRADESH
<td>LUCKNOW
</tr>
<tr>
<td>2
<td>MADHYA PRADESH
<td>BHOPAL
</tr>
</table>
</body>
</html>
Attachments:
Answered by
2
Answer:
html process of WORLD class
Similar questions