Facebook
From Najlepszy kumpel, 5 Years ago, written in Plain Text.
This paste is a reply to Untitled from Najlepszy kumpel - view diff
Embed
Download Paste or View Raw
Hits: 241
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <title>Test z informatyki</title>
  5. <meta content="text/html" charset="utf-8">
  6. </head>
  7. <body>
  8. <h1>Test z informatyki</h1>
  9. <fieldset>
  10. <legend>Dane osobowe</legend>
  11. <form action="" method="">
  12. Imię:<input type="text" name="imie" /> <br />
  13. Nazwisko:<input type="text" name="nazwisko" /> <br />
  14. Klasa:<input type="text" name="klasa" />
  15. </form>
  16. </fieldset>
  17. <fieldset>
  18. <legend>Jaka organizacja opiekuje się HTML?</legend>
  19. <form action="" method="">
  20. <input type="radio" name="opcja" value="1"  checked="checked" />A.1
  21. <input type="radio" name="opcja" value="2" />B.2
  22. <input type="radio" name="opcja" value="3" />C.3
  23. <input type="radio" name="opcja" value="4" />D.4
  24. </form>
  25. </fieldset>
  26. <fieldset>
  27. <legend> Nie pamiętam</legend>
  28. <form action="" method="">
  29. <input type="checkbox" name="opcja1" checked="checked" /> Opcja1
  30. <input type="checkbox" name="opcja2"  /> Opcja2
  31. <input type="checkbox" name="opcja3" checked="checked" /> Opcja3
  32. <input type="checkbox" name="opcja4"  /> Opcja4
  33. </form>
  34. </fieldset>
  35. <fieldset>
  36. <legend>Z jakiej przeglądarki korzystasz</legend>
  37. <form action="" method="">
  38. <select>
  39. <option value="chrome">Google Chrome</option>
  40. <option value="safari">Safari</option>
  41. <option value="ie">Internet Explorer</option>
  42. <option value="mozilla">Mozilla</option>
  43. <option value="opera">Opera</option>
  44. </select>
  45. </form>
  46. </fieldset>
  47. <fieldset>
  48. <legend>Komentarz</legend>
  49. <textarea cols="30" rows="4"></textarea>
  50. </fieldset>
  51. <button type="submit">Wyślij</button>
  52. <button type="reset">Popraw</button>
  53. </body>
  54. </html>