<!--Do not copy🙏🏼-->
<!DOCTYPE html>
<html>
<head>
<title>Let's Calculate</title>
<link rel="stylesheet" type="text/css" href="calculator1.css">
<style type="text/css">
#equals
{
width:69px;
background-color: lime;
}
#clean
{
width:75px;
background-color: white;
}
.formstyle
{
border:6px double;
border-color: black;
margin-left:45px;
margin-right:50px;
padding-top: 10px;
padding-bottom: 40px;
background-color: skyblue;
font-family:cursive;
}
input
{
background-color: yellow;
}
</style>
</head>
<body>
<script type="text/javascript" src="calculator2.js"></script>
<div class="formstyle">
<form name="forms" align="center">
<h3>CALCULATOR</h3>
<input type="text" name="answer" id="answerstyle"><br><br/>
 <input type="button" value=" 1 " onclick="forms.answer.value+='1'">     
<input type="button" value=" 2 " onclick="forms.answer.value+='2'">     
<input type="button" value=" 3 " onclick="forms.answer.value+='3'"><br><br/>
 <input type="button" value=" 4 " onclick="forms.answer.value+='4'">     
<input type="button" value=" 5 " onclick="forms.answer.value+='5'">     
<input type="button" value=" 6 " onclick="forms.answer.value+='6'"><br><br/>
 <input type="button" value=" 7 " onclick="forms.answer.value+='7'">     
<input type="button" value=" 8 " onclick="forms.answer.value+='8'">     
<input type="button" value=" 9 " onclick="forms.answer.value+='9'"><br><br/>
<input type="button" value=" + " onclick="forms.answer.value+='+'">     
<input type="button" value=" 0 " onclick="forms.answer.value+='0'">    
 <input type="button" value=" - " onclick="forms.answer.value+='-'"><br><br/>
 <input type="button" value=" * " onclick="forms.answer.value+='*'">      
<input type="button" value=" / " onclick="forms.answer.value+='/'">     
<input type="button" value=" % " onclick="forms.answer.value+='%'"><br><br/>
<input type="button" value=" = " onclick="forms.answer.value=eval(forms.answer.value)" id="equals">
<input type="reset" value=" clear " onclick="forms.answer.value+=''" id="clean">
</form>
</body>
</html>
تعليقات
إرسال تعليق