-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetails.php
More file actions
53 lines (50 loc) · 2.67 KB
/
Copy pathdetails.php
File metadata and controls
53 lines (50 loc) · 2.67 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
<?php include 'inc/header.php'; ?>
<div class="main">
<div class="content">
<div class="section group">
<div class="cont-desc span_1_of_2">
<div class="grid images_3_of_2">
<img src="images/preview-img.jpg" alt="" />
</div>
<div class="desc span_3_of_2">
<h2>Lorem Ipsum is simply dummy text </h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore.</p>
<div class="price">
<p>Price: <span>$500</span></p>
<p>Category: <span>Laptop</span></p>
<p>Brand:<span>Samsnumg</span></p>
</div>
<div class="add-cart">
<form action="cart.html" method="post">
<input type="number" class="buyfield" name="" value="1"/>
<input type="submit" class="buysubmit" name="submit" value="Buy Now"/>
</form>
</div>
</div>
<div class="product-desc">
<h2>Product Details</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>
</div>
</div>
<div class="rightsidebar span_3_of_1">
<h2>CATEGORIES</h2>
<ul>
<li><a href="productbycat.php">Mobile Phones</a></li>
<li><a href="productbycat.php">Desktop</a></li>
<li><a href="productbycat.php">Laptop</a></li>
<li><a href="productbycat.php">Accessories</a></li>
<li><a href="productbycat.php#">Software</a></li>
<li><a href="productbycat.php">Sports & Fitness</a></li>
<li><a href="productbycat.php">Footwear</a></li>
<li><a href="productbycat.php">Jewellery</a></li>
<li><a href="productbycat.php">Clothing</a></li>
<li><a href="productbycat.php">Home Decor & Kitchen</a></li>
<li><a href="productbycat.php">Beauty & Healthcare</a></li>
<li><a href="productbycat.php">Toys, Kids & Babies</a></li>
</ul>
</div>
</div>
</div>
</div>
<?php include 'inc/footer.php'; ?>