WRITE HTML CODING FOR THE TABLE GIVEN IN THE ATTACHMENT.
Attachments:
siddhartharao77:
Can i use CSS?
Answers
Answered by
15
<html>
<style>
table,th,td
{
border:1px solid grey;
border-collapse:collapse;
}
th,td
{
padding:10px;
text-align:center;
}
</style>
<body>
<table style="width:100%">
<tr>
<th colspan="5">Sayyid Hamid Senior Secondary School <br> ALIGARH MUSLIM UNIVERSITY</br></th>
<th> PRINCIPAL</th>
</tr>
<tr>
<td>Teacher</br>1</br></td>
<td>Teacher</br>2</br></td>
<td>Teacher</br>3</br></td>
<td>Teacher</br>4</br></td>
<td>Teacher</br>5</br></td>
<td>LINKS</br></td>
</tr>
</table>
</body>
</html>
<! ------ Good Luck ------ >
<style>
table,th,td
{
border:1px solid grey;
border-collapse:collapse;
}
th,td
{
padding:10px;
text-align:center;
}
</style>
<body>
<table style="width:100%">
<tr>
<th colspan="5">Sayyid Hamid Senior Secondary School <br> ALIGARH MUSLIM UNIVERSITY</br></th>
<th> PRINCIPAL</th>
</tr>
<tr>
<td>Teacher</br>1</br></td>
<td>Teacher</br>2</br></td>
<td>Teacher</br>3</br></td>
<td>Teacher</br>4</br></td>
<td>Teacher</br>5</br></td>
<td>LINKS</br></td>
</tr>
</table>
</body>
</html>
<! ------ Good Luck ------ >
Attachments:
Answered by
5
<HTML>
<head>
<center>
<body>
<table border="1">
<tr>
<td colspan = "5">
Saiyyid Hamid senior secondary school
ALIGARH MUSLIM UNIVERSITY
</td>
<td>
PRINCIPAL
</td>
</tr>
<tr>
<td>
Teacher
1
</td>
<td>
Teacher
2
</td>
<td>
Teacher
3
</td>
<td>
Teacher
4
</td>
<td>
Teacher
5
</td>
<td>
LINKS
</td>
</tr>
</table>
</body>
</center>
</head>
</html>
hope it helps you
mark brainlist if you like it
<head>
<center>
<body>
<table border="1">
<tr>
<td colspan = "5">
Saiyyid Hamid senior secondary school
ALIGARH MUSLIM UNIVERSITY
</td>
<td>
PRINCIPAL
</td>
</tr>
<tr>
<td>
Teacher
1
</td>
<td>
Teacher
2
</td>
<td>
Teacher
3
</td>
<td>
Teacher
4
</td>
<td>
Teacher
5
</td>
<td>
LINKS
</td>
</tr>
</table>
</body>
</center>
</head>
</html>
hope it helps you
mark brainlist if you like it
Similar questions