Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>TODO List</title>
- <link rel="stylesheet" href="style.css" />
- <script src="script.js" defer></script>
- </head>
- <body>
- <div id="addElement">
- <h1>Shopping List</h1>
- <input id="element" type="text" maxlength="25" />
- <button id="addButton">Add Product</button>
- <button id="printButton">Print</button>
- <p id="message"></p>
- </div>
- <div id="forPrinting">
- <div id="listContainer">
- <ol id="taskList"></ol>
- </div>
- </div>
- </body>
- </html>
Add Comment
Please, Sign In to add comment