Posts

Showing posts from December, 2020

How To Create Forms Using Html Programming

Image
   How To Create Forms Using HTML Programming (By Subhro Mukherjee) Hi Friends ! my name is Subhro Mukherjee and welcome to my blog. here I provide you with  Technology articles and in today’s blog we are going to learn how to create a form using HTML. if you don't know what is HTML, let me tell you HTML is Hypertext  markup language which is used to design and to create webpages. it's quite simple to make a form using Html programming. Now lets talk about the tags used in HTML forms: The <form> tag It is a container tag (a tag which needs opening and closing) in HTML programming. it includes various elements related with form. the syntax of using this tag is : <form> body of the form that contain the form elements </form> The body of the form includes various form elements like text fields, radio buttons , check box, etc. This information is provided to serve different purposes of the user. now, let's discuss various form elements available...