Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
1.5 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Calculator</title>
    <link rel="stylesheet" href="styles.css" />
  </head>

  <body>
    <header>
      <h1>CALCULATOR</h1>
    </header>

    <main>
      <div class="numbers">
        <button class="number-button">0</button>
        <button class="number-button">1</button>
        <button class="number-button">2</button>
        <button class="number-button">3</button>
        <button class="number-button">4</button>
        <button class="number-button">5</button>
        <button class="number-button">6</button>
        <button class="number-button">7</button>
        <button class="number-button">8</button>
        <button class="number-button">9</button>
      </div>

      <button class="signs-and-operations">=</button>
      <button class="signs-and-operations">+</button>
      <button class="signs-and-operations">-</button>
      <button class="signs-and-operations">*</button>
      <button class="signs-and-operations">/</button>
      <button class="signs-and-operations">%</button>

      <button class="red-button functions">C</button>
      <button class="functions">√</button>
      <button class="functions">x²</button>

    </main>

    <footer>

    </footer>

    <script>

    </script>
  </body>
</html>