summaryrefslogtreecommitdiff
path: root/index.html
blob: f6483868824be923af101b7d943f1c094805d90c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link rel="stylesheet" href="./reset.css">
        <link rel="stylesheet" href="./style.css">
        <title>Js-Calculator</title>
    </head>
    <body>
        <div class="container">
            <span class="results buttons">0</span>
            <button class="button-c buttons">C</button>
            <button class="button-z buttons num">0</button>

            <button class="button-X buttons">X</button>

            <button class="button-div buttons sp">/</button>
            <button class="button-mult buttons sp">*</button>
            <button class="button-min buttons sp">-</button>
            <button class="button-plus buttons sp">+</button>
            <button class="button-eq buttons sp">=</button>

            <button class="button-dot buttons">.</button>

            <button class="button-one buttons num">1</button>
            <button class="button-two buttons num">2</button>
            <button class="button-three buttons num">3</button>
            <button class="button-four buttons num">4</button>
            <button class="button-five buttons num">5</button>
            <button class="button-six buttons num">6</button>
            <button class="button-seven buttons num">7</button>
            <button class="button-eight buttons num">8</button>
            <button class="button-nine buttons num">9</button>
        </div>
    </body>
    <script src="./script.js" defer></script>
</html>