-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprodetail.html
More file actions
108 lines (98 loc) · 4.98 KB
/
prodetail.html
File metadata and controls
108 lines (98 loc) · 4.98 KB
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
<!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 Image Change</title>
<link rel = "stylesheet" href = "css\prodetails.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="header">
<div class="header-1">
<a href="index.html" class="logo"> <i class="fas fa-book"></i> Keetabi Keeda </a>
<form action="" class="search-form">
<input type="search" name="" placeholder="search here..." id="search-box">
<label for="search-box" class="fas fa-search"></label>
</form>
<div class="icons">
<div id="search-btn" class="fas fa-search"></div>
<a href="#" class="fas fa-heart"></a>
<a href="#" class="fas fa-shopping-cart"></a>
<div id="login-btn" class="fas fa-user"></div>
</div>
</div>
<div class="header-2">
<nav class="navbar">
<li><a href="index.html">home</a></li>
<li><a href="aboutus.html">about us</a></li>
<li><a href="#categories">Categories</a>
<div class="submenu">
<ul>
<li><a href="#">Buy/Sell</a></li>
<li><a href="#">Author</a></li>
<li><a href="#">Language</a></li>
<li><a href="#">Region</a></li>
<li class="hover-me"><a href="#">Genre</a><i class="fa fa-angle-right"></i>
<div class="submenu1">
<ul>
<li><a href="political.html">Political</a></li>
<li><a href="scientific.html">Scientific</a></li>
<li><a href="motivation.html">Motivational</a></li>
<li><a href="historical.html">Historical</a></li>
<li><a href="romance.html">Romance</a></li>
<li><a href="drama.html">Drama</a></li>
<li><a href="fictional.html">Fictional</a></li>
</ul>
</div>
</li>
</ul>
</div>
</li>
</nav>
</div>
<script>
jQuery('ul#categories').hover(function(){
jQuery('.submenu').fadeTo(200,1);
}, function(){
jQuery('.submenu').fadeTo(200,0,function(){
jQuery(this).hide();
});
});
</script>
</header>
<div class = "main-wrapper">
<div class = "container">
<div class = "product-div">
<div class = "product-div-left">
<div class = "img-container">
<img src = "image\gujaratfiles.jpg" alt = "watch">
</div>
<div class = "hover-container">
<div><img src = ""></div>
</div>
</div>
<div class = "product-div-right">
<span class = "product-name">Gujarat Files: Anatomy of a cover up</span>
<span class = "product-price">Rs 50.25</span>
<div class = "product-rating">
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star"></i></span>
<span><i class = "fas fa-star-half-alt"></i></span>
<span>(350 ratings)</span>
</div>
<p class = "product-description">Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vitae animi ad minima veritatis dolore. Architecto facere dignissimos voluptate fugit ratione molestias quis quidem exercitationem voluptas.</p>
<div class = "btn-groups">
<button type = "button" class = "add-cart-btn"><i class = "fas fa-shopping-cart"></i>add to cart</button>
<button type = "button" class = "buy-now-btn"><i class = "fas fa-wallet"></i>rent now</button>
</div>
</div>
</div>
</div>
</div>
<script src = "js\prodetail.js"></script>
</body>
</html>