HTML form within 1 min simple steps
Steps to Create HTML form
- Open NotePad.
- And type the following codes
- And save your file with .html extension
- Open web browser and run the html document
Video Tutorial (Watch)
Simple HTML code
<html>
<form action="http://google.com">
<h1> Form</h1>
User Name: <input type="text" name="name"><br><br>
Password:<input type="password" name="password"><br><br>
<input type="submit" name="submit"><br>
</form>
</html>