Skip to content

Instantly share code, notes, and snippets.

View marcelosanto's full-sized avatar
🏠
Working from home

Marcelo Santos marcelosanto

🏠
Working from home
View GitHub Profile
<html>
<head>
<title>Calculadora</title>
</head>
<body>
<form>
<input type="text" id="result" disabled />
<br><br>
<input type="button" value="1" onclick="document.getElementById('result').value+='1'"/>
<input type="button" value="2" onclick="document.getElementById('result').value+='2'"/>