summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorlucashemi <lucasxberger@gmail.com>2022-11-08 16:34:46 -0300
committerlucashemi <lucasxberger@gmail.com>2022-11-08 16:34:46 -0300
commitc8a8bcb952a31e678b85e31d455ce03d440682fe (patch)
treed5664a32851a63cf322fe55296aebb3fc93b66e3 /index.html
parenta0abffba4b88f8287af73d63acc73af22dc71c7c (diff)
bug fix
Diffstat (limited to 'index.html')
-rw-r--r--index.html64
1 files changed, 32 insertions, 32 deletions
diff --git a/index.html b/index.html
index 97aa094..f648386 100644
--- a/index.html
+++ b/index.html
@@ -1,39 +1,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="resultado botao">0</span>
- <button class="botao-c botao">C</button>
- <button class="botao-ze botao num">0</button>
+ <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="botao-X botao">X</button>
+ <button class="button-X buttons">X</button>
- <button class="botao-div botao sp">/</button>
- <button class="botao-vez botao sp">x</button>
- <button class="botao-men botao sp">-</button>
- <button class="botao-mai botao sp">+</button>
- <button class="botao-eq botao sp">=</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="botao-ponto botao">.</button>
+ <button class="button-dot buttons">.</button>
- <button class="botao-um botao num">1</button>
- <button class="botao-dois botao num">2</button>
- <button class="botao-tres botao num">3</button>
- <button class="botao-quatro botao num">4</button>
- <button class="botao-cinco botao num">5</button>
- <button class="botao-seis botao num">6</button>
- <button class="botao-sete botao num">7</button>
- <button class="botao-oito botao num">8</button>
- <button class="botao-nove botao num">9</button>
- </div>
-</body>
-<script src="./script.js" defer></script>
+ <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>