Computer Science, asked by RehanAhmadXLX, 1 year ago

WRITE HTML CODING FOR THE TABLE GIVEN IN THE ATTACHMENT.

Attachments:

siddhartharao77: Can i use CSS?
siddhartharao77: I mean HTML + CSS.
RehanAhmadXLX: Yes
RehanAhmadXLX: Thanks Bhaiya

Answers

Answered by siddhartharao77
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 ------ >  
Attachments:

siddhartharao77: Its chrome. 62.0
Anonymous: Thanks.
Anonymous: hey, siddharth bhai, in CBSE X class, there is no need of css, only simple html is enough and necessary...
Anonymous: although, awesome..
RehanAhmadXLX: Bhai, We study both HTML + CSS in 10th
Anonymous: Oops, sorry..
RehanAhmadXLX: No Probs
siddhartharao77: When I am in 10th class.. We don't have Even HTML also. The world is changing Bro. Try to learn on your own.
RehanAhmadXLX: Yeah !!!
Anonymous: yup
Answered by vicky168
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
Similar questions