-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.html
42 lines (33 loc) · 1013 Bytes
/
homepage.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Meal App</title>
<link rel="stylesheet" href="./index.css">
</head>
<body>
<h1> Find your favourite Meal</h1>
<div id="searchbarr">
<input id="searchbar" type="text" placeholder="search" alt="Search for your food">
<i id="food-search" class="fa-solid fa-magnifying-glass"></i>
</div>
<ul id="suggestions">
</ul>
<div id="picture">
<img id="imgs" src="" alt="">
</div>
<div id="navs">
<div id="heart" class="heart">
<i id="heart-symbol" class="fa-solid fa-heart"></i>
<span>Favourite</span>
</div>
<div>
<a class="heart" href="./details/details.html">More Details</a>
</div>
<div class="heart" >
<a id="list-link" href="">Favourites List</a>
</div>
</div>
<script type="text/javascript" src="./index.js"></script>
<script src="https://kit.fontawesome.com/ad3c4c04de.js" crossorigin="anonymous"></script>
</body>
</html>