A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/html/html-select-name-attribute/ below:

HTML | <select> name Attribute

HTML | <select> name Attribute

Last Updated : 28 Jul, 2022

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:



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4