 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Set the name of the form the element belongs to in HTML?
Use the form attribute in HTML to set the name of the one or more form the element belongs to in HTML.
Example
You can try to run the following code to implement the form attribute −
<!DOCTYPE html> <html> <body> <form action = "" method = "get" id = "myform"> SubjectID: <input type = "number" name = "subid"><br> Subject Name: <input type = "text" name = "subname"><br> Total Students: <input type="number" name = "stcount"><br> </form> <button type = "submit" form = "myform" value = "Submit">Click</button> </body> </html>
Advertisements
 