Guest User

Untitled

a guest
Jun 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. <fieldset>
  2. <ul>
  3. <li>
  4. <label for="txtName">Name</label>
  5. <input type="text" id="txtName" />
  6. </li>
  7. </ul>
  8. </fieldset>
  9.  
  10. <fieldset>
  11. <p>
  12. <label for="txtName">Name</label>
  13. <input type="text" id="txtName" />
  14. </p>
  15. </fieldset>
  16.  
  17. <p>
  18. <input type="radio" name="flavor" id="choc" value="chocolate" />
  19. <label for="choc">Chocolate</label><br/>
  20. <input type="radio" name="flavor" id="cream" value="cream"/>
  21. <label for="cream">Cream Filled</label><br/>
  22. <input type="radio" name="flavor" id="honey" value="honey"/>
  23. <label for="honey">Honey Glazed</label><br/>
  24. <input type="submit" value="Purchase Donuts"/>
  25. </p>
  26.  
  27. <fieldset>
  28. <div class="field">
  29. <label for="txtName">Name</label>
  30. <input type="text" id="txtName" />
  31. </div>
  32. <div class="field">
  33. <label for="txtTitle">Title</label>
  34. <input type="text" id="txtTitle" />
  35. </div>
  36. </fieldset>
  37.  
  38. <fieldset>
  39. <dl>
  40. <dt><label for="txtName">Name</label></dt>
  41. <dd><input type="text" id="txtName" /></dd>
  42. </dl>
  43. </fieldset>
  44.  
  45. <fieldset>
  46. <label>Name <input type="text" id="txtName"/></label>
  47. <label>Location <input type="text" id="txtLocation"/></label>
  48. </fieldset>
  49.  
  50. <fieldset>
  51. <ol>
  52. <li>
  53. <label for="txtNameFirst">Name</label>
  54. <input type="text" id="txtNameFirst" />
  55. </li>
  56. <li>
  57. <label for="txtNameLast">Name</label>
  58. <input type="text" id="txtNameLast" />
  59. </li>
  60. </ol>
  61. </fieldset>
  62.  
  63. <fieldset>
  64. <dl>
  65. <dt><label for="txtNameFirst">Name</label></dt>
  66. <dd><input type="text" id="txtNameFirst" /></dd>
  67. </dl>
  68. <dl>
  69. <dt><label for="txtNameLast">Name</label></dt>
  70. <dd><input type="text" id="txtNameLast" /></dd>
  71. </dl>
  72. </fieldset>
Add Comment
Please, Sign In to add comment