Skip to content

Instantly share code, notes, and snippets.

@mchampaneri
Created June 14, 2018 11:46
Show Gist options
  • Save mchampaneri/310711c7179a7e96c15285ce152e6c75 to your computer and use it in GitHub Desktop.
Save mchampaneri/310711c7179a7e96c15285ce152e6c75 to your computer and use it in GitHub Desktop.
simple gui html file
<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