Nenhuma descrição

dom_form_fieldset.html 1.2KB

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  5. <title>Insert title here</title>
  6. </head>
  7. <body>
  8. <fieldset>
  9. <legend>legend</legend>
  10. <input type="text" value="input type text" /><br />
  11. <input type="password" value="input type password" /><br />
  12. <input type="checkbox" value="input type checkbox" /><br />
  13. <input type="checkbox" checked value="input type checkbox" /><br />
  14. <input type="radio" value="input type radio" /><br />
  15. <input type="radio" checked value="input type radio" /><br />
  16. <input type="submit" value="input type submit" /><br />
  17. <input type="reset" value="input type reset" /><br />
  18. <input type="file" value="input type file" /><br />
  19. <input type="hidden" value="input type hidden" />&lt;&lt; input type hidden<br />
  20. <input type="image" value="input type image" />&lt;&lt; input type image<br />
  21. <input type="button" value="input type button" /><br />
  22. <button>button</button><br />
  23. <textarea>textarea
  24. this is a
  25. test
  26. foo
  27. </textarea><br />
  28. <select>
  29. <option>FOO</option>
  30. <option selected>BAR</option>
  31. </select><br />
  32. </fieldset>
  33. </body>
  34. </html>