JSFiddle - React, Tailwind, and code Playground

Module6: Calculator Original Attempt

by Ttt Yyy

HTML

<!DOCTYPE html>
<html>
<head>
  <title>Calculator</title>
  <script src="angular/angular.js"></script>
</head>
<body>
<h1> Calculator </h1>
<h3> Display Number </h3>
<button value = '1'> 1 </button>
<button> 2 </button>
<button> 3 </button>
<br/> 
<button> 4 </button>
<button> 5 </button>
<button> 6 </button>
<br /> 
<button> 7 </button>
<button> 8 </button>
<button> 9 </button>
<br /> 
<button> + </button>
<button> - </button>
<button> x </button>
<button> / </button>
<br /> 
<button > = </button>
<!-- <body>
  <div ng-app="app">
    <div ng-controller="AppController">
      <app />
    </div>
  </div> -->

<!-- <div id="app"></div> -->
<!-- <script type="text/javascript" src="bundle.js"></script> -->
<script type="text/javascript" src="calculator.js"></script>
</body>
</html>