-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (62 loc) · 2.77 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<title>Заказ шаурмы</title>
</head>
<boby>
<form action="" method="GET">
<fieldset style="width: 370px">
<legend>Вид мяса</legend>
<select name="meat">
<option disabled selected>Выбрать</option>
<option value="pork">Свинина</option>
<option value="beef">Говядина</option>
<option value="lamb">Баранина</option>
<option value="chicken">Курица</option>
</select>
</fieldset>
<fieldset style="width: 370px">
<legend>Лаваш</legend>
<input type="radio" name="pita" value="thin" id="thin" checked>
<label for="thin">Тонкий</label>
<br>
<input type="radio" name="pita" value="thin" id="thick">
<label for="thin">Толстый</label>
</fieldset>
<fieldset style="width: 370px">
<legend>Добавки</legend>
<img src="mayonnaise.png">
<input type="checkbox" name="additives['mayonnaise']" value="1" id="mayonnaise" checked>
<label for="mayonnaise">Майонез</label>
<br>
<img src="ketchup.png">
<input type="checkbox" name="additives['ketchup']" value="1" id="ketchup">
<label for="ketchup">Кетчуп</label>
<br>
<img src="mustard.png">
<input type="checkbox" name="additives['mustard']" value="1" id="mustard">
<label for="mustard">Горчица</label>
<br>
<img src="onion.png">
<input type="checkbox" name="additives['onion']" value="1" id="onion" checked>
<label for="onion">Лук</label>
</fieldset>
<fieldset style="width: 370px">
<legend>Оплата</legend>
<input type="radio" name="payment" value="cash" id="cash" checked>
<label for="cash">Наличными</label>
<br>
<input type="radio" name="payment" value="card" id="card">
<label for="card">Картой</label>
</fieldset>
<fieldset style="width: 370px">
<legend>Комментарий</legend>
<textarea name="comment" style="width: 100%;" rows="7"></textarea>
</fieldset>
<br>
<input type="submit" value="Заказать">
<input type="reset" value="Сбросить">
</form>
</boby>
</html>