नाम का प्रयोग करें तत्व का नाम सेट करने के लिए विशेषता। आप निम्न HTML तत्वों के साथ इसका उपयोग कर सकते हैं:<बटन>, <फ़ील्डसेट>, <फॉर्म>,
उदाहरण
आप लागू करने के लिए निम्न कोड को चलाने का प्रयास कर सकते हैं नाम विशेषता -
<!DOCTYPE html> <html> <body> Subject: <input type = "text" name = "sub" spellcheck = "true"> <p>Add an incorrect spelling for a word above and see what happens.</p> <p contenteditable = "true" spellcheck = "true">This is an editable conttent, with a spelling mistake. Click to edit.</p> </body> </html>