Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Form HTML 5</title>
  5. <style>
  6. input {
  7. background-color:#f2f2f2;
  8. font-size:24px;
  9. font-family: calibri;
  10. color:#ddd;
  11. }
  12. textarea {
  13. resize:none;
  14. overflow:auto; <!--untuk scroll, tidak ngefek-->
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <form>
  20. Username : <input type="text" placeholder="username" required="required"><br>
  21. Password : <input type="password" placeholder="password" required="required"><br>
  22. Date : <input type="date"><br>
  23. Email : <input type="email"><br>
  24. Age: <input type="number" min="2" max="100"><br>
  25. Gender : <input type="radio" name="jk" checked="checked">Male
  26. <input type="radio" name="jk">Female<br>
  27. City : <select>
  28. <option>Surabaya</option>
  29. <option selected="selected">Bandung</option>
  30. <option>Jakarta</option>
  31. </select><br>
  32. Telephone : <input type="tel" max="12"><br>
  33. Range : <input type="range" min="100" max="500"><br>
  34. Color : <input type="color"><br>
  35. Time : <input type="time"><br>
  36. File : <input type="file"><br>
  37. Hobby : <input type="checkbox" name="hobby" value="makan">Makan<br>
  38. <input type="checkbox" name="hobby" value="tidur">Tidur<br>
  39. <input type="checkbox" name="hobby" value="makanlagi">Makan Lagi<br>
  40. Information : <textarea cols="20" rows="5"></textarea><br>
  41. Video : <video width="640" height="480" autoplay controls> <!-- value: muted, autoplay, controls, loop, preload. extension yg bisa: ogg,mp4,webm-->
  42. <source src="videoplayback.mp4" type="video/mp4">
  43. Your browser does not supported the video tag
  44. </video><br>
  45. Audio : <audio controls> <!-- value: muted-->
  46. <source src="JENNIE (BLACKPINK) - 'SOLO' LYRICS (EngRomHan가사).mp3" type="audio/mp3">
  47. Your browser does not supported the video tag
  48. </audio><br>
  49. <input type="submit" value="login"><br>
  50. </form>
  51. <br>
  52. Google Search :
  53. <form action="https://www.google.co.id/search">
  54. <input type="text" name=q>
  55. <input type="submit" value="Cari">
  56. </form>
  57. Yahoo :
  58. <form method="get" action="http://id.search.yahoo.com/search">
  59. <input type="text" name=p placeholder="Yahoo search">
  60. <input type="submit" value="Cari">
  61. </form><br>
  62.  
  63. <iframe width="640" height="480" src="https://www.youtube.com/embed/dGcGbF4ex5o" frameborder="5" allowfullscreen></iframe>
  64. <!--https://www.youtube.com/watch?v=dGcGbF4ex5o (watch?v= diganti jadi embed/)-->
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement