forked from aakarshpatel84/Ideacart-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (75 loc) · 2.9 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
<!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>Home Page</title>
<link rel="stylesheet" href="homePage.css">
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="footer.css">
</head>
<body>
<header>
<div id="container">
<nav id="check-box">
<a href="index.html" class="logo">
<h2>IDEAKART</h2>
</a>
<!-- homepage will be link in this page -->
<form>
<input type="text" placeholder="search...." class="search">
<input type="submit" value="Search" id="searchbooks">
</form>
<div id="card">
<div><a href="About.html">About</a></div>
<div><a href="contact.html">Contact</a></div>
<div><a href="login.html">Sign In</a></div>
<div><a href="signup.html">Sign Up</a></div>
<div><a href="cart.html"><img
src="https://mpng.subpng.com/20190404/sar/kisspng-portable-network-graphics-clip-art-computer-icons-buy-shopping-cart-svg-png-icon-free-download-561-5ca6a63da9af56.187623941554425405695.jpg"></a>
</div>
</div>
</nav>
</div>
</header>
<div id="crauser">
<img src="https://rukminim1.flixcart.com/flap/1800/1800/image/b6bc3ed0ef0b6fef.jpg?q=80"
alt="Image is not found">
<button> > </button>
<button>
< </button>
</div>
<h1>Top Reads</h1>
<div id="filterbook">
<select id="filterPrice">
<option value="SortbyPrice">Sort by Price</option>
<option value="LowToHigh">Low To High</option>
<option value="HighToLow">High To Low</option>
</select>
<select id="filterRating">
<option value="SortbyRating">Sort by Rating</option>
<option value="HighToLow">High To Low</option>
<option value="LowToHigh">Low To High</option>
</select>
</div>
<div id="containerForBook"></div>
</div>
<div id="nextPage">
<button>Next Page ></button>
</div>
<footer>
<h1 class="footerheading">Get to know Us</h1>
<ul>
<li><a href="About.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="https://www.google.com/">Search</a></li>
<li><a href="policy.html">Privacy Policy</a></li>
<li><a href="refund.html">Refund Policy</a></li>
<li><a href="earn.html">Earn money Online</a></li>
<li><a href="index.html">Quick Buyer</a></li>
</ul>
</footer>
</body>
</html>
<script src="homePage.js"></script>