Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html SYSTEM "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Interface para o serviço: Aritmética</title>
- </head>
- <body>
- <h3>Interface para o serviço: Aritmética</h3>
- <form action="cli-soma2nums.php">
- <fieldset>
- <legend>Parâmetros</legend>
- <label for="n1">n1: </label>
- <input type="text" name="n1" id="n1"/>
- <br/>
- <label for="n2">n2: </label>
- <input type="text" name="n2" id="n2"/>
- <br/>
- <select name="op">
- <option value="soma">+</option>
- <option value="sub">-</option>
- <option value="mul">*</option>
- <option value="div">/</option>
- </select>
- </fieldset>
- <input type="submit" value="Enviar"/>
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment