SHOW:
|
|
- or go back to the newest paste.
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 |