-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
133 lines (120 loc) · 5.51 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!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">
<link rel="icon" type="image/x-icon" href="./images/logo.png">
<link rel="stylesheet" href="https://boostmat-ui.netlify.app/components/component.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="home.css">
<title>Online Shopping Site for Books | Pustaka</title>
</head>
<body>
<div class="nav-header">
<ul class="navbar">
<div class="navbar-main ">
<div class="navbar-left">
<a href="index.html">
<h2>Pustaka</h2>
</a>
</div>
<div class="search-container">
<i class="fa fa-search" aria-hidden="true"></i>
<input type="text" name="search" class="search-bar" placeholder="Search for product" id="">
</div>
<ul class="navbar-right">
<li>
<a href="./auth/login.html">
<img src="./images/logo.png"></a>
</li>
<li>
<div class="icon cart-badge">
<a href="./wishlist-manage/wishlist.html">
<i class="fa fa-heart-o "></i>
<div class="notification-icon flex-center">
<span>1</span>
</div>
</a>
</div>
</li>
<li class="nav-cart">
<div class="icon cart-badge">
<a href="./cart-manage/cart.html">
<i class="fa fa-shopping-cart "></i>
<div class="notification-icon flex-center">
<span>1</span>
</div>
</a>
</div>
</li>
</ul>
</div>
<div class="search-container search-mob">
<i class="fa fa-search" aria-hidden="true"></i>
<input type="text" name="search" class="search-bar" placeholder="Search for product" id="">
</div>
</ul>
</div>
<div class="home-container">
<div class="home-img-container">
<div class="bg-img-container">
</div>
<div class="home-page-text">
<div class="main-text">
<h4>Welcome to <span class="title">Pustaka</span>,</h4>
<div>
<h1 class="main-text-title">For All Your</h1>
<h1 class="main-text-title">Reading Needs</h1>
</div>
<a href="./product-list/product-list.html" class="link-btn shop-now-btn">SHOP NOW</a>
</div>
</div>
<div class="overlay"></div>
</div>
<div class="category-container flex-center">
<div class="container">
<div class="category-heading text-center">
<h2>Featured Book Categories</h2>
<p class="paragraph-md">
There are many variations of passages of Lorem Ipsum available, but the majority have suffered
alteration
</p>
</div>
<div class="category-row">
<div class="box">
<div class="detail-box text-center">
<h4>Fiction</h4>
<p class="paragraph-sm">fact that a reader will be distracted by the readable content of a
page when looking at its layout. The point of using</p>
</div>
</div>
<div class="box">
<div class="detail-box text-center">
<h4>Non Fiction</h4>
<p class="paragraph-sm">fact that a reader will be distracted by the readable content of a
page when looking at its layout. The point of using</p>
</div>
</div>
<div class="box">
<div class="detail-box text-center">
<h4>Self Help</h4>
<p class="paragraph-sm">fact that a reader will be distracted by the readable content of a
page when looking at its layout. The point of using</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer flex-center">
<h5>Made with <i class="fa fa-heart" aria-hidden="true"></i> by Rutvik Umak </h5>
<div class="icon-bar">
<a href="https://github.com/rutvikpumak" class="github-logo"><i class="fa fa-github "></i></a>
<a href="https://twitter.com/rutvikumak13" class="twitter"><i class="fa fa-twitter "></i></a>
<a href="https://linkedin.com/in/rutvikumak" class="linkedin"><i class="fa fa-linkedin "></i></a>
</div>
<p class="paragraph-sm">© 2022</p>
</div>
</body>
</html>