1
0

add HTML part

This commit is contained in:
Rémi Heredero 2024-04-05 14:40:06 +02:00
commit d56657117a
Signed by: Klagarge
GPG Key ID: 3CBAC2C6CD1E8807

19
calc.html Normal file
View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<title>HTML / CSS</title>
<style>
</style>
</head>
<body>
<form method="GET" action="http://webex.sdi.hevs.ch/calc">
<p>Operand 1</p>
<input type="number" name="operandA"><br>
<p>Operand 2</p>
<input type="number" name="operandB"><br><br>
<input type="submit" value="Calculate">
<input type="reset"><br><br>
</form>
</body>
</html>