1
0
This repository has been archived on 2024-10-30. You can view files and clone it, but cannot push or open issues or pull requests.
SDi-HTML-Exercise/calc.html

19 lines
489 B
HTML
Raw Normal View History

2024-04-05 12:40:06 +00:00
<!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>