Edit This Code:
<!DOCTYPE html>
<html>
<body>

<form name="Form1"></form>
<form name="Form2"></form>
<form name="Form3"></form>

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML =
"The name of the first for is " + document.forms[0].name;
</script>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy