HTML Practical
HTML Practical
<html>
<head>
</head>
<body>
<h2>STUDENT DETAILS</h2>
<tr>
<th>S.No</th>
<th>Product Name</th>
<th>Price</th>
</tr>
<tr>
<td>1.</td>
<td>6500</td>
</tr>
<tr>
<td>2.</td>
<td>7000</td>
</tr>
<tr>l
<td>TOTAL</td>
<td>13500</td>
</tr>
</table>
</body>
</html>
Output :-
Practical :-14
Aim: Write the html program to create the following frame design:
Code:
<html>
<head>
<title>Frame Layout</title>
</head>
<frameset cols="33%,34%,33%">
<frameset rows="50%,50%">
</frameset>
</frameset>
</frameset>
</html>
Output :-