-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1 lines (1 loc) · 2.31 KB
/
index.html
1
<!doctype html> <html lang=en> <head> <meta charset=UTF-8> <meta name=viewport content="width=device-width,initial-scale=1"> <meta http-equiv=X-UA-Compatible content="ie=edge"> <link href="https://fonts.googleapis.com/css?family=Roboto:500" rel=stylesheet> <title>Calculator</title> <link href="./index.css?c03db411775632edc78c" rel="stylesheet"></head> <body> <div class=container> <div class=options> <div class=select-color id=color> <span>Select color</span> <div class=list> <span id=default></span> <span id=red></span> <span id=blue></span> <span id=yellow></span> <span id=purple></span> <span id=green></span> </div> </div> <fieldset id=systems> <legend>Select system</legend> <label> <input type=radio name=system-select id=metric checked=checked>Metric system (999 999,99) </label> <label> <input type=radio name=system-select id=imperial>Imperial system (999,999.99) </label> </fieldset> </div> <div class=screen-container> <span class=screen></span> <span class=screen></span> </div> <div class=keyboard-container> <input type=button value=CE class=btn id=ce> <input type=button value=C class=btn id=c> <input type=button value=<-- class=btn id=backspace> <input type=button value=÷ class="btn op" id=division> <input type=button value=7 class="btn num" id=seven> <input type=button value=8 class="btn num" id=eight> <input type=button value=9 class="btn num" id=nine> <input type=button value=x class="btn op" id=multiply> <input type=button value=4 class="btn num" id=four> <input type=button value=5 class="btn num" id=five> <input type=button value=6 class="btn num" id=six> <input type=button value=- class="btn op" id=minus> <input type=button value=1 class="btn num" id=one> <input type=button value=2 class="btn num" id=two> <input type=button value=3 class="btn num" id=three> <input type=button value=+ class="btn op" id=plus> <input type=button value=± class=btn id=plusminus> <input type=button value=0 class="btn num" id=zero> <input type=button value=, class="btn num" id=decimal> <input type=button value=( class="btn num" id=open-parant> <input type=button value=) class="btn num" id=close-parent> <input type=button value=% class=btn id=percent> <input type=button value="=" class=btn id=equal> </div> </div> <script type="text/javascript" src="index.bundle.js?c03db411775632edc78c"></script></body> </html>