Advertisement
Guest User

Untitled

a guest
Jul 19th, 2017
466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.32 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title> </title>
  4. </head>
  5.  
  6. <body>
  7. <strong>Dados do Remetente</strong>
  8. <br />
  9. <form id="form1" name="form1" method="post" action="enviar_contato.php">
  10.   <label>Nome:<br />
  11.   <input name="nome_rem" type="text" id="nome_rem" onclick="this.value = ''" size="35" maxlength="100" />
  12.   </label>
  13.   <br />
  14.   <label>Email:<br />
  15.   <input name="email_rem" type="text" id="email_rem" onClick="this.value = ''" size="35" maxlength="100" />
  16.   </label>
  17.   <p><strong>Dados do Destinatário</strong></p>
  18.   <p>
  19.     <label>Email:<br />
  20.     <select name="email" id="email">
  21.       <option value="email1@hotmail.com">Setor 1</option>
  22.       <option value="email2@hotmail.com">Setor 2</option>
  23.       <option value="email3@hotmail.com">Setor 3</option>
  24.     </select>
  25.     </label>
  26.     <br />
  27.     <label>Assunto:<br />
  28.     <input name="assunto" type="text" id="assunto" onclick="this.value = ''" size="35" maxlength="100" />
  29.     </label>
  30.     <br />
  31.     <label>Mensagem:<br />
  32.     <textarea name="mensagem" id="mensagem" cols="45" rows="5" value="Assunto da Fofoca"></textarea>
  33.     </label>
  34.     <br />
  35.     <label>
  36.     <input type="submit" name="enviar" id="enviar" value="Mandar" />
  37.     </label>
  38.   ou
  39.   <label>
  40.   <input type="reset" name="limpar" id="limpar" value="Limpar" />
  41.   </label>
  42.   </p>
  43. </form>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement