-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.48 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 http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Favorite Meals</title>
<link rel="stylesheet" type="text/css" href="./style.css" />
<script defer type="text/javascript" src="./index.js"></script>
</head>
<body>
<header>
<h1>What would you like to eat today?</h1>
</header>
<div class="row">
<div class="column column-left">
<h4>Search for your favorite meals!</h4>
<div class="component">
<form id="search-meals">
<div id="search-conditions">
</div>
<input type="submit" value="Search" />
</form>
</div>
<br>
<h4>Meals found: </h1>
<div class="component meal-list">
<ul id="searched-meal-list">
</ul>
</div>
<br>
<h4>My favorite meals: </h4>
<div class="component meal-list">
<ul id="favorite-meals">
</ul>
</div>
</div>
<div class="column column-right">
<h4>Description of the selected meal : </h4>
<div id="display-meal-desc" class="component">
</div>
</div>
</div>
</body>
</html>