forked from aakarshpatel84/Ideacart-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
productPage.html
140 lines (124 loc) · 4.81 KB
/
productPage.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
134
135
136
137
138
139
140
<!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>Product Page</title>
<!-- <link href="data.json" rel="import" /> -->
<link rel="stylesheet" href="navbar.css">
<link rel="stylesheet" href="footer.css">
<link rel="stylesheet" href="productPage.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">
<button type="submit">Search</button>
</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>
<!-- cart.html href link -->
<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="parent">
<div id="image">
<!-- Image Border -->
<div class="border">
<img id="imageId" src="https://images-eu.ssl-images-amazon.com/images/I/517zsvd4DYL.jpg" alt="">
</div>
<!-- Price Detail -->
<p>Buy at best price from hare</p>
<div class="inner">
<h2 id="rate"></h2>
<button id="by">Buy Now</button>
</div>
<p>Get Instant Cashback when you pay using Amazon Pay... Click Here</p>
<h3>Book Specification</h3>
<table id="productProperties">
<tbody>
<tr>
<td><strong>Binding</strong> </td>
<td>Paperback</td>
</tr>
<tr>
<td><strong>Language</strong> </td>
<td>English</td>
</tr>
<tr>
<td><strong>Number Of Pages</strong> </td>
<td>176</td>
</tr>
<tr>
<td><strong>Author </strong> </td>
<td>Matt Oldfield</td>
</tr>
<tr>
<td><strong>Publisher</strong> </td>
<td>John Blake Publishing Ltd</td>
</tr>
<tr>
<td><strong>Isbn-10</strong> </td>
<td>1786069237</td>
</tr>
<tr>
<td><strong>Isbn-13 </strong> </td>
<td>9781786069238</td>
</tr>
<tr>
<td><strong>Dimension</strong> </td>
<td>12.7*0.0*19.69</td>
</tr>
</tbody>
</table>
</div>
<div id="right">
<h1 id="title"></h1>
<div>
<h3 id="subtitle">Matt Oldfield's Kane (Ultimate Football Heroes - International Edition)</h3>
<p id="pera"></p>
</div>
<!-- Pricing Table Starts -->
<table id="pricingDetail">
<tr>
<th>Store</th>
<th>Price</th>
<th>Buy Now</th>
</tr>
<tr>
<td>Amazon, Paperback</td>
<td id="trate"></td>
<td id="add-to-cart" class="add-to-cart-button"><input type="button" value="Add to cart"></td>
</tr>
</table>
</div>
</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="productPage.js"></script>