WebServ/www/public/M0/01/index.html

28 lines
652 B
HTML
Raw Normal View History

2024-08-22 10:58:09 +00:00
<!doctype html>
<html>
<head lang="sv"></head>
<body>
<h1>Matematik-test</h1>
<form action="evaluate.php" method="post">
<fieldset>
<legend>Frågor</legend>
<label>4 + 5 = </label>
<input type="text" name="q1">
<br>
<label>3 x 5 = </label>
<input type="text" name="q2">
<br>
<label>3 - 5 = </label>
<input type="text" name="q3">
<br>
<label>15 / 3 = </label>
<input type="text" name="q4">
<br>
<label>7 x 8 = </label>
<input type="text" name="q5">
<br>
<input type="submit" value="Evaluate">
</fieldset>
</form>
</body>
</html>