├── index.html └── mystyle.css /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | Calculator 10 | 11 | 12 | 13 |

Basic Calculator

14 |
15 |
16 |
17 | 18 | 19 | 20 |
21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 |
29 | 30 | 31 | 32 | 33 |
34 | 35 | 36 | -------------------------------------------------------------------------------- /mystyle.css: -------------------------------------------------------------------------------- 1 | input { 2 | width:150px; 3 | height:100px; 4 | font-size:75px; 5 | border-radius:10px; 6 | margin:10px; 7 | background-color:#000; 8 | color:#fff; 9 | border-style:none; 10 | } 11 | 12 | #myform { 13 | 14 | margin-left:225px; 15 | margin-top:20px; 16 | /*border:medium solid purple;*/ 17 | } 18 | h1{ 19 | text-align:center; 20 | font-size:80px; 21 | margin-right:150px; 22 | margin-top:20px; 23 | 24 | } --------------------------------------------------------------------------------