Advertisement
Guest User

Untitled

a guest
Feb 28th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.73 KB | None | 0 0
  1. Selecione sua comida favorita:<br>
  2.       <select name="comidas">
  3.         <option value="Pizza">Pizza</option>
  4.         <option value="Pastel">Pastel</option>
  5.         <option value="Bolo de Paçoca" selected>Bolo de Paçoca</option>
  6.         <option value="Lasanha">Lasanha</option>
  7.       </select><br>
  8.       <hr>
  9.      
  10.       Deixe aqui um recadinho<br>
  11.       <textarea name="mensagem" rows="10" cols="30">
  12.         Era uma vez...
  13.       </textarea><br>
  14.       <hr>
  15.      
  16.  
  17.       <input type="text" name="nome" value="Maria" disabled>
  18.       <input type="text" name="nome" value="Maria" maxlength="4">
  19.       <input type="text" name="nome" value="Maria" maxlength="4" size="500">
  20.       <input type="text" name="nome" value="Maria" required>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement