Posts

Showing posts from March, 2022

FY B.sc IT Practical 4(B): Design a web page with a form that uses all types of controls

Code: <!DOCTYPE html> <html> <head> <title>Password Input Control</title> </head> <body> <form > User ID : <input type="text" name="user_id" /> <br> Password: <input type="password" name="password" /> <br> Description : <br /> <textarea rows="5" cols="50" name="description"> Enter description here... </textarea> <br> <input type="checkbox" name="maths" value="on"> Maths <input type="checkbox" name="physics" value="on"> Physics <br> <input type="radio" name="subject" value="maths"> Maths <input type="radio" name="subject" value="physics"> Physics <br> <select name="dropdown"> <option value="Maths" selected>Maths</option> <option v...

FY B.sc IT Practical 3(C) :Design a web page with Imagemaps.

Image
 (a). Design a web page with Imagemaps. <!DOCTYPE html> <html> <body> <h1> Image Mapping</h1> <p>click on this Image</p> <img src="mobile.png"  alt="Mobile"  usemap="#phone" width="500"  height="500"> <map  name="phone"> <area  shape="rect"  coords="126,25,360,513"  alt="my phone"  href="home.html"> </map> </body> </html> output:

FY Bsc IT Practical 1(C) Design a web page demonstrating all Style sheet types

Main.html <!DOCTYPE html> <html> <head> <title>nested lists</title> <style type="text/css"> .fruits{color:blue} .vegetables{color:yellow} </style> <link rel="stylesheet" type="text/css" href="one.css"> </head> <body> <ul style="list-style-type:filled square"> <li class="bg" style="color:red">fruits</li> <ol style="list-style-type:upper-roman"> <li class="fruits">banana</li> <li class="fruits">apple</li> <li class="fruits">mango</li> </ol> </ul> <ol style="list-style-type:lower-alpha"> <li class="bg" style="color:red">vegetables</li> <ol class="grp1" start="4" style="list-style-type:uppper-roman"> <li class="vegetables">tomato</li> <li class=...

FY Bsc IT Practical 1(B). Design a web page using different text formatting tags.

One.html <!DOCTYPE html> <html> <haed> <title>One</title> </head> <body> <a href="two.html">Go to Two.html</a> </body> </html> Two.html <!DOCTYPE html> <hrtml> <head> <title>Two</title> </head> <body> Welcome to two.html. <br> <a href="three.html">Go to three.html</a> </body> </html> Three.html <!DOCTYPE html> <hrtml> <head> <title>Three</title> </head> <body> Welcome to Hyperlinks. </body> </html>