Advertisement
Guest User

Zadatak1

a guest
Feb 24th, 2018
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Statistika</title>
  5. <meta charset="UTF-8">
  6. <style>
  7. label {
  8. font-family: Arial;
  9. font-size:20px;
  10. color: red;
  11. }
  12. .obrazac {
  13. font-size:10px;
  14. background-color:blue;
  15. }
  16. #naslov2 {
  17. font-weight: bold;
  18. text-align: center;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23.  
  24. <div class="naslov">
  25. <img src="logo.png" height="200px" width="400px" >
  26. <p id="naslov2">Odabir operacije</p>
  27. </div>
  28.  
  29. <div class="sadrzaj">
  30. <form name="forma" method="post" action="dz2.php" class="obrazac">
  31. <select>
  32. <option name="opcije" value=1>Aritmetička sredina</option>
  33. <option name="opcije" value=2>Mod</option>
  34. <option name="opcije" value=3>Medijan</option>
  35. </select><br>
  36. <label for="korime">Korisničko ime: </label>
  37. <input name="korime" type="text"><br>
  38. <label for="lozinka">Lozinka: </label>
  39. <input name="lozinka" type="password"><br><br>
  40. <label for="a">A: </label>
  41. <input name="a" type="integer"><br>
  42. <label for="b">B: </label>
  43. <input name="b" type="integer"><br>
  44. <label for="c">C: </label>
  45. <input name="c" type="integer"><br><br>
  46. <input name="submit" type="submit" value="Slanje podataka">
  47. </form>
  48. </div>
  49.  
  50. <div class="podnozje">
  51. <a href="mailto:statistika@foi.hr">Pošaljite nam e-mail poruku!</a>
  52. </div>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement