Created
June 14, 2018 11:46
-
-
Save mchampaneri/310711c7179a7e96c15285ce152e6c75 to your computer and use it in GitHub Desktop.
simple gui html file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<head> | |
<title>Simple Calc</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
</head> | |
</head> | |
<body> | |
<label for="">Input First</label> | |
<input type="number" style="width: 250px; margin: 0 auto;" id="input1" > | |
<label for="">Input Second</label> | |
<input type="number" style="width: 250px; margin: 0 auto;" id="input2" > | |
<input type="button" style="width: 125px; margin: 0 auto;" value="Add ( + )" id="add"> | |
<hr> | |
<input type="number" style="width: 250px; margin: 0 auto;" id="output1" disabled> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment