Guest User

Untitled

a guest
Sep 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html >
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Code Pen &middot; 10</title>
  7.  
  8. <!-- CSS related content -->
  9.  
  10. <style>
  11. #
  12. </style>
  13.  
  14. </head>
  15.  
  16. <body>
  17. <!-- HTML related content -->
  18. <form action="#" method="post">
  19. <div>
  20. <label for="name">Text Input:</label>
  21. <input type="text" name="name" id="name" value="" tabindex="1" />
  22. </div>
  23.  
  24. <div>
  25. <h4>Radio Button Choice</h4>
  26.  
  27. <label for="radio-choice-1">Choice 1</label>
  28. <input type="radio" name="radio-choice-1" id="radio-choice-1" tabindex="2" value="choice-1" />
  29.  
  30. <label for="radio-choice-2">Choice 2</label>
  31. <input type="radio" name="radio-choice-2" id="radio-choice-2" tabindex="3" value="choice-2" />
  32. </div>
  33.  
  34. <div>
  35. <label for="select-choice">Select Dropdown Choice:</label>
  36. <select name="select-choice" id="select-choice">
  37. <option value="Choice 1">Choice 1</option>
  38. <option value="Choice 2">Choice 2</option>
  39. <option value="Choice 3">Choice 3</option>
  40. </select>
  41. </div>
  42.  
  43. <div>
  44. <label for="textarea">Textarea:</label>
  45. <textarea cols="40" rows="8" name="textarea" id="textarea"></textarea>
  46. </div>
  47.  
  48. <div>
  49. <label for="checkbox">Checkbox:</label>
  50. <input type="checkbox" name="checkbox" id="checkbox" />
  51. </div>
  52.  
  53. <div>
  54. <input type="submit" value="Submit" />
  55. </div>
  56. </form>
  57.  
  58. <!-- Javascript related content -->
  59.  
  60. <script>
  61. <!-- no js -->
  62. </script>
  63. </body>
  64.  
  65. </html>
Add Comment
Please, Sign In to add comment