Computer Science, asked by ahemant885, 10 months ago

Write a program in html for creating three row frames (with height 25%, 50%, 25%) on a page​

Answers

Answered by Haridas12
5

Answer:

<html>

<body>

<table border="6">

<tr height=25%>

<th> country </th>

<th> capital </th>

</tr>

<tr height=50%>

<td> India </td>

<td> Delhi </td>

</tr>

<tr height=25%>

<td> Germany </td>

<td> Berlin </td>

</tr>

</table>

</html>

This Might Help U !!!!

Similar questions