Computer Science, asked by udaysanjaysharma, 11 months ago

plzz see the attachment and answer fast​

Attachments:

Answers

Answered by Brainlyshchay
3

Hey buddy i can help you in your HTML questions, if you have more of them please tell me :)

Code:

<html>

<head>

 <title>Create a Table in HTML | nishchay</title>

 <style>

   @import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

   body {

     font-family: Raleway, sans-serif;

     text-align: center;

   }

   hr {

     width: 50%;

   }

   table,

   th,

   td {

     border: 1px solid black;

     border-collapse: collapse;

     align: ;

   }

   th,

   td {

     padding: 5px;

     text-align: ;

   }

   .thc {

     background-color: #E53935;

   }

   tr {

     background-color: #00ACC1;

   }

 </style>

</head>

<body>

 <h1>Make A Table Using HTML</h1>

 <hr>

 <br>

 <table align="center">

   <tr class="thc">

     <th>Name</th>

     <th>Place</th>

     <th>Maximum<br>Temperatur<br>in C</th>

   </tr>

   <div>

     <tr>

       <td>Wardha</td>

       <td rowspan="2">Maharashtra</td>

       <td>47.5</td>

     </tr>

     <tr>

       <td>Aloka</td>

       <td>46.4</td>

     </tr>

     <tr>

       <td>Khajuraho</td>

       <td rowspan="2">Madhya<br>Pradesh</td>

       <td>46.4</td>

     </tr>

     <tr>

       <td>Sagar</td>

       <td>46.2</td>

     </tr>

   </div>

 </table>

</body>

</html>

Hope this helps you :)

No SPAMMING ❗❕ .......

Attachments:
Similar questions