-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="The Tonda food app shows consumers the list of ingredients present in their favorite food products.">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Tonda Food App</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<section id="banner">
<div class="inner">
<h2>Tonda Foods Inc.</h2>
<p>The Tonda food app shows consumers the list of ingredients present in their favorite food products. <br /> Be it food for vegans, vegetarians or meat lovers, the tonda app has got you covered.<br /> Simply type the product barcode into the box below.<br />
</p>
</div>
</section>
<section class="enter-barcode">
<label for="barcode">Enter a UPC/EAN barcode number below <br /><span class="no-span">(Example: 041196010886)</span></label>
<input type="text" onkeypress="return (event.charCode !=8 && event.charCode ==0 || (event.charCode >= 48 && event.charCode <= 57))" id="barcode" name="barcode">
<button type="button">Check Status</button>
</section>
<img id="product-img" src="" alt="">
<h2 id="product-name"></h2>
<table id="ingredient-table" class="hidden">
<tr>
<th>Ingredients</th>
<th>Vegan</th>
<th>Vegetarian</th>
</tr>
</table>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>