
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
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 Element in HTML
Use the name attribute to set the name of the element. You can use this with the following HTML elements: <button>, <fieldset>, <form>, <iframe>, <input>, <map>, <meta>, <object>, <output>, <param>, <select>, <textarea>
Example
You can try to run the following code to implement name attribute −
<!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>
Advertisements