HTML

Select and Textarea

The <select> element creates a dropdown list.

The <textarea> element allows users to enter multiple lines of text.

<label>Choose a Course:</label>

<select>
    <option>HTML</option>
    <option>CSS</option>
    <option>JavaScript</option>
</select>

<br><br>

<textarea 
    rows="5" 
    cols="40"
    placeholder="Write your message">
</textarea>
Interactive Sandbox
HTML/CSS/JS