Wednesday 4 March 2015

Class 7 : Forms Revision

Create the following webpage :
 
<html>
<frameset rows=25%,*>
<frame src=top.html>
<frameset cols=25%,*,35%>
<frame src=left.html>
<frame src=mid.html>
<frame src=rights.html>
</frameset>
</frameset>
</html>
----------------------------------------------------------------------------------------

<html>
<body>
<font size=6 color=marroon>
<center>
Picture Gallery
</center>
<img src=jrteam1.PNG>
</body>
</html>


-----------------------------------------------------------------------------------
<html>
<body bgcolor=beige text=red>

<form>
Enter your Name : <input type=text><p>
Enter class/Sec : <input type=text><p>
Enter your roll no : <input type=text><p>

Select your House :<p>
<input type=radio>Elphick House<br>
<input type=radio>Pettigrew House<br>
<input type=radio>Thomas House<br>
<input type=radio>Pope House<br>
<input type=radio>PakenhamWalsh House<br>
<br>
Drop your Comments:<br>
<textarea cols=25 rows=5>
</textarea>
<center>
<input type=submit value=Submit>
</body>
</html>


------------------------------------------------------------------------------------
<html>
<body>
<img src=kg.png><p>
<img src=junior1.png><p>
<img src=junior2.png><p>
<img src=middle.gif><p>
<img src=senior.png><p>
<img src=isc.png>
</body>
</html>

 

Class 7 : FORMS

This is a sample form using the controls in HTML form.



 

Revision - Frames

One.html
<html>
<body bgcolor=olive text=white>
<b><center> One</center></b>
</body>
</html>


------------------------------------------------------------------------------------
Two.html
<html>
<body bgcolor=pink text=white>
<b><center> Two</center></b>
</body>
</html>


-----------------------------------------------------------------------------------

<html>
<frameset rows=30%,*>
<frame src=one.html>
<frame src=two.html>
</frameset>
</frameset>


Output :


*******************************************************

<html>
<frameset cols=30%,35%,*>
<frame src=three.html>
<frame src=four.html>
<frame src=five.html>
</frameset>
</frameset>



Output :


---------------------------------------------------------------------------------
<html>
<frameset rows=35%,*>
<frame src=one.html>
<frameset cols=30%,35%,*>
<frame src=three.html>
<frame src=four.html>
<frame src=five.html>
</frameset>
</frameset>
</html>


Output :


 

Ch 7 Frameset