-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 872 Bytes
/
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
<html>
<head>
</head>
<body>
<h1 style="text-align:center">Recipeas</h1>
<div align="center">
<form style="text-align:center; width:30%">
<span style="float:left">Ingredients to include:</span>
<span style="float:right"><input type="text" name="ing_include"></span>
<div style="clear:both"/>
<br>
<span style="float:left">Ingredients to exclude:</span>
<span style="float:right"><input type="text" name="ing_exclude"></span>
<div style="clear:both"/>
<br>
<span style="float:left">Preparation time:</span>
<span style="float:right"><input type="text" name="prep_time"></span>
<div style="clear:both"/>
<br>
<span style="float:left">Calories:</span>
<span style="float:right"><input type="text" name="calories"></span>
<div style="clear:both"/>
<br>
<input type="submit" name="submit" value="Search">
</form>
</div>
</body>
</html>