Untitled

 avatar
unknown
html
2 years ago
815 B
7
Indexable
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <link rel="icon" href="https://glitch.com/favicon.ico" />

    <!-- Import the webpage's stylesheet -->
    <link rel="stylesheet" href="/style.css" />

    <!-- Import the webpage's javascript file -->
    <script src="/script.js" defer></script>
  </head>
  <body>
    <div id="dodajElement">
      <h1>Lista zadań</h1>

      <input id="element" type="text" maxlength="25" />
      <button id="przyciskDodaj">Dodaj produkt</button>
      <button id="przyciskDrukuj">Drukuj</button>

      <p id="komunikat"></p>
    </div>

    <div id="doWydrukowania">
      <div id="kontenerLista">
        <ol id="listaZadan"></ol>
      </div>
    </div>
  </body>
</html>
Editor is loading...