Open In App

HTML | <select> name Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <select> name Attribute is used to specify a name for the drop-down list. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. 

Syntax:

<select name="text"> 

Attribute Values: It contains the value i.e name which specify the name for the <select> element. 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Select name Attribute
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
 
    <h2 style="font-family: Impact;">
       HTML Select name Attribute
    </h2>
    <br> Select your preferred
  course from the drop-down list:
    <br>
 
    <select name="Courses Titles" id="myCourses">
        <option value="C++">c++</option>
        <option value="Placement">Placement</option>
        <option value="Java">Java</option>
        <option value="Python">Python</option>
    </select>
 
</body>
 
</html>


Output:

  

Supported Browsers:

  • Google Chrome
  • Firefox 1 and above
  • Edge 12 and above
  • Internet Explorer
  • Opera
  • Apple Safari

Last Updated : 28 Jul, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads