leo-y
1/21/2018 - 9:38 PM

html basic

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>Calculator</title>
        <link rel="stylesheet" href="calculator.css">
    </head>

    <body>
        <div class="">
            8
        </div>
        <div>
            <button>7</button>
            <button>8</button>
            <button>9</button>
            <button>&plus;</button>
            <br/>            
            <button>4</button>
            <button>5</button>
            <button>6</button>
            <button>&minus;</button>
            <br/>
            <button>1</button>
            <button>2</button>
            <button>3</button>
            <button>&times;</button>
            <br/>            
            <button>0</button>
            <button>&equals;</button>
            <button>&divide;</button>
            <br/>            
        </div>      
    </body>
</html>