html select multiple

HTML
To select multiple options you have to use 'multiple' attribute in select dropdown

Selecting multiple options vary in different operating systems and browsers:
For windows: Hold down the control (ctrl) button to select multiple options
For Mac: Hold down the command button to select multiple options

Html:
<select name="direction" id="directions" multiple>
  <option value="east">East</option>
  <option value="west">West</option>
  <option value="north">North</option>
  <option value="south">South</option>
</select>

<!--
I hope it will help you.
Namaste
-->
Source

Also in HTML: