forked from gyeong707/Aller-joyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
43 lines (40 loc) · 1.5 KB
/
index.php
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
<?php
///
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Aller-joyo</title>
<link rel=stylesheet href="style.css" type="text/css">
</head>
<body>
<span id="headinfo">SSWU 4-2 DBP</span>
<div id="container">
<div id="board">
<img src="images/egg.png" class="img_egg">
<img src="images/meal.png" class="img_meal">
<img src="images/milk.png" class="img_milk">
<img src="images/peach.png" class="img_peach">
<span id="board_title">Do you have a food <sapn class="high-text">allergy</sapn>?</span>
<div id="borad_content">
<span class="content">We will show you the ingredients of the product.</span><br>
<span class="content"><sapn class="high-text">Here, Select the product category!</span></span>
<div id="board_category"> Available Category : 라면, 만두, 떡볶이</div>
</div>
<div id="form-container">
<form action="category_process.php" method="POST">
<select name = "category" class="form_select">
<option value="all">  전체</option>
<option value="라면">  라면</option>
<option value="만두">  만두</option>
<option value="떡볶이">  떡볶이</option>
</select><br>
<input type="submit" value="Submit" class="form_submit"><br><br>
</form>
</div>
</div>
</div>
<div id="team_info">Team6 : 강미경, 김수빈, 김혜지, 이혜린</div>
</body>
</html>