Calcolatrice_HTML/index.html
La Programmatrice Verde 6bed27e8b5 Lavoro finito(?)
2025-02-16 14:11:13 +01:00

24 lines
798 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="utf-8" />
<title>Titolo</title>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div class="corpo">
<p id="testo1">Operando 1</p>
<input id="numero1" type="text"/>
<p id="testo2">Operando 2</p>
<input id="numero2" type="text"/>
<p id="testo3">Risultato</p>
<input id="output" type="text" readonly/>
<button id="più" onclick="Somma()">+</button>
<button id="meno" onclick="Differenza()">-</button>
<button id="per" onclick="Prodotto()">×</button>
<button id="diviso" onclick="Quoziente()">÷</butto>
</div>
</body>
</html>