HTML Forms are used for collecting data or information from the website visitors.
Example
<!Doctype Html>
<Html>
<Head>
<Title>HTML Forms</Title>
</Head>
<Body>
<form >
First name: <input type = "text" name = "first_name" /><br>
Last name: <input type = "text" name = "last_name" />
</form>
</Body>
</Html>
Copyright ©2022 coderraj.com. All Rights Reserved.