HTML <select> name Attribute

Last Updated : 26 May, 2026

The name attribute is used to assign a name to a <select> element. This name is used to identify the selected value when the form is submitted.

  • Specifies the name of the dropdown element.
  • The selected option value is sent using this name during form submission.
  • Helps the server identify and process form data correctly.

Syntax:

<select name="text"> 

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

html
<!--Driver Code Starts-->

<!DOCTYPE html>
<html>

<head>
    <title>
        HTML Select name Attribute
    </title>
</head>

<!--Driver Code Ends-->

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

<!--Driver Code Starts-->

</html>

<!--Driver Code Ends-->
Comment