Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  5. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  6. <title>Hurtownia</title>
  7. <link rel="stylesheet" href="styl4.css">
  8.  
  9.  
  10.  
  11.  
  12. <script>
  13. function zamow()
  14. {
  15. var number=document.getElementById("number").value;
  16. var weight=document.getElementById("waga").value;
  17. var price = 0;
  18. if(number == 1)
  19. {
  20. price = weight * 5;
  21.  
  22.  
  23. }
  24.  
  25.  
  26.  
  27.  
  28.  
  29. }
  30. else if (number == 2)
  31. {
  32. price = weight +7;
  33. }
  34. else if(number ==3)
  35. {
  36.  
  37. price = weight +6;
  38. }
  39. else
  40. {
  41.  
  42. price =0;
  43. }
  44. document.getElementById("wynik").innerHTML = "koszt zamowienia wynosi:" + price +"zl";
  45. }
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. </script>
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66. </head>
  67. <body>
  68. <section id="logo">
  69. <img src="logo.png" alt="hurtownia">
  70. </section>
  71.  
  72. <section id="menu">
  73. <a href="index.html">Strona glowna</a>
  74. <a href="zamowienia.html">Zamówienia</a>
  75. <a href="blog.html">Blog o kawie</a>
  76. <a href="http://gatunki-kawy.pl/" target="_blank">Odwiedź także</a>
  77. </section>
  78.  
  79. <section class="header">
  80. <h1>Hurtownia kawy</h1>
  81. </section>
  82.  
  83. <section class="main">
  84. <h2>Oferta</h2>
  85. <ol>
  86. <li>Kawa palona Arabica</li>
  87. <li>Kawa palona Robusta</li>
  88. <li>Kawa bezkofeinowa</li>
  89. <li>Kawa zielona</li>
  90. </ol>
  91. </section>
  92.  
  93. <section class="main">
  94.  
  95. Podaj numer kawy: <br/>
  96. <input id="numer" type="number"><br/>
  97. Podaj wagę w dekagramach:</br>
  98. <input id="numer" type="number"><br/>
  99.  
  100.  
  101. <p id="wynik"></p>
  102. </section>
  103.  
  104. <section class="header">
  105. Stronę przygotowal: <b>Najlepszy informatyk w witosie</b>
  106. </section>
  107. </body>
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement