Answers for "options input html"

11

html form select

<!-- O segundo valor estará selecionado inicialmente -->
<select name="select">
  <option value="valor1">Valor 1</option> 
  <option value="valor2" selected>Valor 2</option>
  <option value="valor3">Valor 3</option>
</select>
Posted by: Guest on May-25-2020
0

input type options html

/* most common ones */
<input type="text|password|color|search|url|checkbox|date|file|image|time|email|number|radio|submit"/>
Posted by: Guest on May-02-2021

Browse Popular Code Answers by Language