Skip to content

Instantly share code, notes, and snippets.

@masamasa6210
Created November 28, 2016 06:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save masamasa6210/587d698aebb910897612e134fba7b1b4 to your computer and use it in GitHub Desktop.
Save masamasa6210/587d698aebb910897612e134fba7b1b4 to your computer and use it in GitHub Desktop.
電卓
<html>
<head>
<title>calc.html</title>
</head>
<body>
<form name="form1" action="calc.php" method="post">
<input type = "text" name = "txtA">
<select name="selOpe" size=1>
<option value = "+">+</option>
<option value = "-">-</option>
<option value = "×">×</option>
<option value = "÷">÷</option>
</select>
<input type = "text" name = "txtB"> = ?
<br>
<input type = "submit" value = "計算">
<input type = "reset" value = "クリア">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment