-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
114 lines (107 loc) · 3.55 KB
/
index.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=" />
<link rel="stylesheet" href="index.css" />
<title>Booksy clone</title>
</head>
<body>
<main>
<nav class="navbar">
<h1>Booksy</h1>
<form action="/search-result" class="form">
<input
type="text"
name="search"
placeholder="Search by author, titles, name"
/>
</form>
<div class="account">
<img class="account_heart" src="./images/heart.svg" alt="heart" />
<div class="account_basket">0</div>
<p>EN</p>
</div>
</nav>
<ul class="menu">
<li class="menu_item">
<a class="link" href="/home">Home</a>
</li>
<li class="menu_item">
<a class="link" href="/bestseller">Bestseller</a>
</li>
<li class="menu_item">
<a class="link" href="/category">Category</a>
</li>
<li class="menu_item">
<a class="link" href="/findastore">Find a Store</a>
</li>
<li class="menu_item">
<a class="link" href="/blog">Blog</a>
</li>
</ul>
<div class="landing">
<div class="landing_container">
<h2>Build your library</h2>
<p>Buy two selected books and get one for free</p>
<a class="landing_container_link" href="/library">View all</a>
</div>
<div class="landing_container">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player
src="https://assets5.lottiefiles.com/packages/lf20_Cp59I2.json"
background="transparent"
speed="0.5"
style="width: 300px; height: 300px"
loop
autoplay
></lottie-player>
</div>
</div>
<div class="library">
<div class="library_header">
<h3>Popular Now</h3>
<a class="link" href="/library">View All</a>
</div>
<div class="library_gallery">
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Creative Hustle</h3>
<p>Ramen Albert</p>
<p>𫔊</p>
</div>
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Art Unleashed</h3>
<p>Ramen Albert</p>
<p></p>
</div>
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Creative Hustle</h3>
<p>Ramen Albert</p>
<p>𫔊</p>
</div>
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Art Unleashed</h3>
<p>Ramen Albert</p>
<p></p>
</div>
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Creative Hustle</h3>
<p>Ramen Albert</p>
<p>𫔊</p>
</div>
<div class="library_gallery_book">
<img src="./images/book-img.jpg" alt="book" style="height: 100px" />
<h3>Art Unleashed</h3>
<p>Ramen Albert</p>
<p></p>
</div>
</div>
</div>
</main>
</body>
</html>