Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632111 Views

Latest files of /cody/Kuldeep-Sharmaa/Calculator

style.css cody/Kuldeep-Sharmaa/Calculator/style.css
106 Views
0 Comments
* {
margin: 0;
padding: 0;
}
.button {
padding: 18px;
margin: 1px 2px;
border: 2px solid black;
Calculator cody/Kuldeep-Sharmaa/Calculator/index.html
363 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Calculator! Made by Kuldeep</title>
<link rel="stylesheet" href="utlis.css" />
<link rel="stylesheet" href="style.css" />
utlis.css cody/Kuldeep-Sharmaa/Calculator/utlis.css
109 Views
0 Comments
.head {
text-align: center;
margin-bottom: 40px;
margin-top: 20px;
font-family: sans-serif "Roboto";
font-size: 40px;
}
.container {
script.js cody/Kuldeep-Sharmaa/Calculator/script.js
175 Views
0 Comments
let string = "";
let buttons = document.querySelectorAll(".button");
Array.from(buttons).forEach((button) => {
button.addEventListener("click", (e) => {
if (e.target.innerHTML == "=") {
string = eval(string);
document.querySelector("input").value = string;
// To clear the input