Skip to main content

Posts

Showing posts from April 12, 2021

WP Practical

Prac 1 Aim : Implement basic HTML tags to learn HTML Code : <html> <head> <title>prac1</title> </head> <body> <form> name:<input type="text" name="name"><br> Gender:male <input type="radio" name="g" value="male"><br> female <input type="radio" name="g" value="female"><br> city : <select> <option>ahmedabad</option> <option>mumbai</option> <option>surat</option> <option>mehsana</option> </select> </form> <hr> <ol type="i"> <li>abc</li> <li>xyz</li> <li>mno</li> </ol> <br> <ul type="disc"> <li>abc</li> <li>xyz</li> <li>mno</li> </ul> <p>this is p tag</p><br> <b>this is b tag</b><br> <i>this is i tag<

Contact Form

Name

Email *

Message *