-
Notifications
You must be signed in to change notification settings - Fork 2
/
singleproduct.html
117 lines (103 loc) · 4.09 KB
/
singleproduct.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
<!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>Document</title>
<!-- slider -->
<link rel="stylesheet" href="https://unpkg.com/swiper@7/swiper-bundle.min.css" />
<!--Font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css"/>
<!-- CSS Linked -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/feature.css">
</head>
<body>
<!-- Header section starts -->
<header class="header">
<div class="header-1">
<a href="#" class="logo"><i class=" fas fa-book"></i>bookly</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 cart"></a>
<a href="userlogin.html" id="login-btn" class="fas fa-user"></a>
</div>
</div>
<!-- navi -->
<div class="header-2">
<nav class="navbar">
<a href="index.html">Home</a>
<a class="active" href="feature.html">Feature</a>
<a href="#arrivals">Arrivals</a>
<a href="#reviews">Reviews</a>
<a href="#blogs">blogs</a>
</nav>
</div>
</header>
<section id="prodetails" class="section-p1">
<div class="single-pro-image">
<img src="image/f1.jpg" width="100%" id="MainImg" alt="">
</div>
<div class="single-pro-details">
<h6>Home/Feature</h6>
<h4>Rich Dad and Poor Dad</h4>
<h2>Rs.499</h2>
<button class="addtocart">Add to Cart</button>
<h4>Product Details</h4>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Est sapiente dolore quas totam error, ab deserunt nihil eius. Quae non aut minima repellat porro consequuntur maxime cupiditate eos mollitia
excepturi iure quo libero suscipit sint?</p>
</div>
</section>
<section id="product1" class="section-p1">
<h2>Featured Product</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing.</p>
<div class="pro-container">
<div class="pro">
<img src="image/f1.jpg" alt="">
<div class="des">
<span>Lorem</span>
<h5>Lorem ipsum dolor sit.</h5>
<h4>Rs.200</h4>
</div>
<a href="#"><i class="fas fa-shopping-cart cart"></i></a>
</div>
<div class="pro">
<img src="image/f1.jpg" alt="">
<div class="des">
<span>Lorem</span>
<h5>Lorem ipsum dolor sit.</h5>
<h4>Rs.200</h4>
</div>
<a href="#"><i class="fal fa-shopping-cart cart"></i></a>
</div>
<div class="pro">
<img src="image/f1.jpg" alt="">
<div class="des">
<span>Lorem</span>
<h5>Lorem ipsum dolor sit.</h5>
<h4>Rs.200</h4>
</div>
<a href="#"><i class="fal fa-shopping-cart cart"></i></a>
</div>
</div>
</section>
<!-- bottom navbar start-->
<nav class="bottom-navbar">
<a href="#home" class="fas fa-home"></a>
<a href="#featured" class="fas fa-list"></a>
<a href="#arrivals" class="fas fa-tags"></a>
<a href="#reviews" class="fas fa-comments"></a>
<a href="#blogs" class="fas fa-blogs"></a>
</nav>
<!-- bottom navbar ends -->
<!-- JS file linked -->
<script src="js/script.js"></script>
</body>
</html>