Open In App

HTML | <select> name Attribute

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: 






<!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:

Article Tags :