Advertisement
Guest User

HTML - Lekcja 9. Lista zadań

a guest
Mar 13th, 2025
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.69 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <meta charset="utf-8" />
  5.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  6.     <title>Lista zadań</title>
  7.     <link rel="stylesheet" href="style.css" />
  8.     <script src="script.js" defer></script>
  9.   </head>
  10.   <body>
  11.     <div id="dodajElement">
  12.       <h1>Lista zakupów</h1>
  13.  
  14.       <input id="element" type="text" maxlength="25" />
  15.       <button id="przyciskDodaj">Dodaj produkt</button>
  16.       <button id="przyciskDrukuj">Drukuj</button>
  17.  
  18.       <p id="komunikat"></p>
  19.     </div>
  20.  
  21.     <div id="doWydrukowania">
  22.       <div id="kontenerLista">
  23.         <ol id="listaZadan"></ol>
  24.       </div>
  25.     </div>
  26.   </body>
  27. </html>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement