Computer Science, asked by shivampatel11101997, 4 months ago

Using HTML

Create 4 x3 table

Within table, place 12 images of Indian Tourist spots, in each box

Each image should link to the corresponding Website of the Tourist Spot. Each image must be at least 100x100 in size

Answers

Answered by ItzDisha56
9

Answer:

Each image should link to the corresponding Website of the Tourist Spot. Each image must be at least 100x100 in size

sorry.....

Answered by kamlesh678
2

Answer:

3x4 table :

<table>

   <tr>

       <td>Row 1, cell 1</td>

       <td>Row 1, cell 2</td>

       <td>Row 1, cell 3</td>

   </tr>

   <tr>

       <td>Row 2, cell 1</td>

       <td>Row 2, cell 2</td>

       <td>Row 2, cell 3</td>

   </tr>

   <tr>

       <td>Row 3, cell 1</td>

       <td>Row 3, cell 2</td>

       <td>Row 3, cell 3</td>

   </tr>

   <tr>

       <td>Row 4, cell 1</td>

       <td>Row 4, cell 2</td>

       <td>Row 4, cell 3</td>

   </tr>

</table>

Adding image :

<img src="url" alt="alternatetext" width = "100px" length = "100px">

Explanation:

#SPJ3

Similar questions