Skip to main content

frameset in html

<html>
<head>
<title>frame</title>
</head>
<frameset cols="60%,40%">
<frame src="cources.html">
<frame src="bcom.html">
</frameset>
</html>

Comments

Popular posts from this blog

online application form

<html> <head> <title>online application form</title> </head> <body> <form> <table border="5" cellpading="10" cellspacing="10"> <tr> <th colspan="2" bgcolor="#0CCA89" ><font color="white">Online application</font></th> </tr> <tr> <td> <b>Name:</b></td> <td> <input type="text" name="name"> </td> </tr> <tr> <td> <b>Address: </b></td> <td> <textarea rows="5" cols="15"> </textarea></td> </tr> <tr> <td> <b>Gender:</b> </td> <td> <input type="radio" name="gender">Male <input type="radio" name="gender">Female</td> </tr> <tr> <td> <b> Hobbies:</b> </td...