-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (30 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>FODMAP Checker</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>FODMAP Checker</h1>
<section>
<form>
<label>
Type dish name then click the button to search or just press enter
<input type="text" id="entry" placeholder='Dish name; "chicken lasagna' name="food">
</label>
<button>Search</button>
</form>
<a href='#' id="dishLink"><h3 class="dish-name" id="userDishName"></h3></a>
<h2>Result:<span id="result"></span></h2>
<ul id="detailedResponse"></ul>
<a id="wiki" href="https://en.wikipedia.org/wiki/FODMAP">FODMAP wiki page</a>
<h4 id="disclaimer">If 'bad' was not the result that doesn't mean 100% that your meal is fodmap friendly, it just means that it couldn't find specificly negative ingredients.</h4>
</section>
<footer>
<a href="https://www.andmperotti.com">Andrew Perotti 2023</a>
</footer>
<script src="index.js" type="text/javascript"></script>
</body>
</html>