-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
47 lines (42 loc) · 1.61 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<title>Search Ingredient</title>
<link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css">
<!-- Include the jQuery library -->
<script src="js/jquery-1.11.2.min.js"></script>
<!-- Include the jQuery Mobile library -->
<script src="js/jquery.mobile-1.4.5.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div data-role="page" id="pagetwo">
<div data-role="main" class="ui-content">
<div class="ui-corner-all custom-corners" style="margin-top: 60px;">
<div class="ui-bar ui-bar-a">
<b><h2>Select Ingredient Food List</h2></b>
</div>
</div>
<div class="ui-body ui-body-a" data-iconpos="right">
<form>
<fieldset data-role="controlgroup" data-iconpos="right">
<label for="red">Red</label>
<input type="checkbox" name="favcolor" id="red" value="red">
<label for="green">Green</label>
<input type="checkbox" name="favcolor" id="green" value="green">
<label for="blue">Blue</label>
<input type="checkbox" name="favcolor" id="blue" value="blue">
<label for="yellow">Yellow</label>
<input type="checkbox" name="favcolor" id="yellow" value="yellow">
<label for="brown">Brown</label>
<input type="checkbox" name="favcolor" id="brown" value="brown">
<label for="purple">Purple</label>
<input type="checkbox" name="favcolor" id="purple" value="purple">
</fieldset>
<button class="ui-btn" type="submit">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>