-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchres.html
More file actions
24 lines (24 loc) · 963 Bytes
/
searchres.html
File metadata and controls
24 lines (24 loc) · 963 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<title>Nutrition Helper</title>
</head>
<body>
<!-- UI setup -->
<div class="button-container">
<button class="btn btn-primary" id="btnm2" onclick="homePage()">Go Back</button>
</div>
<h1 id="h1b">Results</h1>
<div id="timeTaken"></div>
<div id="olz">
<ol id="foodapp"></ol>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/PapaParse/5.3.0/papaparse.min.js"></script>
<script src="app.js"></script>
</html>