-
Notifications
You must be signed in to change notification settings - Fork 1
/
favourites.html
76 lines (70 loc) · 2.15 KB
/
favourites.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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" />
<title>My favourites</title>
<script
src="https://kit.fontawesome.com/5fc882c95a.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="./favourites.css" />
<link rel="stylesheet" href="./navbar.css" />
<link
rel="icon"
type="image/x-icon"
href="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdeXTVDu67JZDJNNRO9MhA7OBpUHYgEC54aw&usqp=CAU"
/>
<!-- <script
src="https://kit.fontawesome.com/5fc882c95a.js"
crossorigin="anonymous"
></script> -->
</head>
<body>
<div id="navbar">
<div onclick="window.location.href='index.html'">
<img
src="https://logos-world.net/wp-content/uploads/2022/05/Trivago-Logo-700x394.png"
alt=""
/>
</div>
<div id="navlist">
<a
href="./favourites.html"
style="color: #007cc2; border-bottom: 3px solid#007cc2"
>
<i class="fa-regular fa-heart" style="font-size: 23px; opacity: 80%">
</i>
My favourites
</a>
<a href="./login.html"> Log in </a>
<a href=""> Menu <i class="fa-solid fa-chevron-down"></i> </a>
<a> INR <i class="fa-solid fa-chevron-down"></i> </a>
</div>
</div>
<div id="top">
<h1>My favourites</h1>
<p id="stayy">0 stays</p>
<p style="margin-top: 25px">
Click the heart icon next to a stay's name and it will be saved here
</p>
<img
src="https://imgcy.trivago.com/image/upload/v1655727086/hardcodedimages/favorites/empty-favorites.svg"
alt=""
/>
<p>Ready to browse and favourite stays?</p>
<button
style="cursor: pointer"
onclick="window.location.href='hotels.html'"
>
Explore stays
</button>
</div>
<div id="activity">
<p>Your favourites</p>
<div id="items"></div>
</div>
</body>
<script src="./favourite.js"></script>
</html>