blob: c31df04e48d20b271e1b53ed001e4d05f24b89b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Food-app</title>
<link href="/index.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Food-app</h1>
<p>\(result\)</p>
<form method="GET">
<label for="index">Opettaja / kurssi:</label>
<br>
<input type="text" name="index" placeholder="sahe // ÄI1.2">
<br>
<label for="day">Päivä:</label>
<br>
<select name="day">
<option value="1">ma</option>
<option value="2">ti</option>
<option value="3">ke</option>
<option value="4">to</option>
<option value="5">pe</option>
<option value="6" disabled>la</option>
<option value="0" disabled>su</option>
</select>
<input type="submit">
</form>
</body>
</html>
|