-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavourites.html
64 lines (43 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BookLY</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles/favourites.css">
<link rel="stylesheet" href="styles/style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header>
<div class="logo">
<div class="logo-first"><i class="fa-solid fa-book"></i></div>
<div class="logo-second">BookLY</div>
</div>
<i class='bx bx-menu' id="menu" onclick="onClickMenu()"></i>
<nav>
<a href="index.html#Home">Home</a>
<a href="index.html#Arrival">Arrival</a>
<a href="index.html#Bestseller">Bestseller</a>
<a href="cat.html">Filter Books</a>
<a href="search.html"><i class='bx bx-search'></i></a>
<a href="favourites.html" class="active"><i class='bx bxs-heart'></i></a>
</nav>
</header>
<main>
<div class="med3">
<h1 style="color: #001625;">Favourite</h1>
<h1 style="color: #14A1E8;">Books</h1>
</div>
<div class="fav-books"></div>
</main>
<footer>
<p>Made with ❤️ by BookLY</p>
</footer>
<script src="script/fav.js"></script>
</body>
</html>