-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (27 loc) · 859 Bytes
/
index.html
File metadata and controls
29 lines (27 loc) · 859 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
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recipe Finder</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="fontawesome/css/all.css">
</head>
<body>
<h1>Recipe Finder</h1>
<div id="search-form">
<input type="text" id="query" placeholder="Search for recipes...">
<button id="search-button" onclick="searchRecipes()">Search</button>
</div>
<div id="results"></div>
<div id="recipe-details">
<div id="statusBar">
<span>
<i id="close-button" onclick="closeRecipeDetails()" class="fas fa-window-close"></i>
</span>
</div>
<div id="recipe-content"></div>
</div>
<script src="main.js"></script>
</body>
</html>