ใช้ แบบฟอร์ม แอตทริบิวต์ใน HTML เพื่อตั้งชื่อรูปแบบอย่างน้อยหนึ่งรูปแบบที่เป็นของ HTML
ตัวอย่าง
คุณสามารถลองเรียกใช้โค้ดต่อไปนี้เพื่อใช้งาน แบบฟอร์ม แอตทริบิวต์ −
<!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>