forked from yumjw/recipe-recommendation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./web-front/style.css">
<title>와!빅 냉장고</title>
</head>
<body>
<header>
<div class="logo">
<h1>
와!빅 냉장고
</h1>
</div>
<div class="container">
<div class="search">
<input id="type" type="text" placeholder="필수 재료를 입력하세요." autofocus>
<button id="add">추가</button>
</div>
<div class="notify" id="notify"></div>
<div class="ingredient-box">
<ul id="ingredient-ul">
</ul>
</div>
<div class="submit-container" id="submit-container">
<button id="submit"> 레시피 알려조</button>
</div>
</div>
</header>
<main>
<div class="loader" id="loader"></div>
<div class="result-container" id="result-container">
</div>
</main>
<audio src="./web-front/cart.mp3" autoplay type="audio/mpeg"></audio>
<script src="./web-front/ingredient.js"></script>
<script src="./web-front/script.js"></script>
</body>
</html>