-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct-detail-page.html
87 lines (87 loc) · 3.52 KB
/
product-detail-page.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Venia</title>
</head>
<body>
<script src="main.js"></script>
<header>
<nav class="header_content">
<ul>
<li><a href="#"><img src="../src/images//VeniaLogo-n77.svg"/></a></li>
</ul>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Electronics</a></li>
<li><a href="#">Jwellery</a></li>
</ul>
<ul>
<li><a href="#"><img src="../src/images/1-shopping-bag.jpg"/></a></li>
</ul>
</nav>
</header>
<main class="pagemain">
<section class="product-detail-page-wrapper">
<div class="product-detail">
<div class="product-image">
<img src="" alt="">
</div>
<div class="product-info">
<span class="product-title">title</span>
<span class="product-price">$95</span>
<span class="product-rating">3/5</span>
<p>Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum Lorem Ipsum <a href="javascript;">Read More</a></p>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-wrapper">
<div class="footer-content">
<h5>Account</h5>
<ul>
<li><a href="">Column1</a></li>
<li><a href="">Column1</a></li>
<li><a href="">Column1</a></li>
<li><a href="">Column1</a></li>
</ul>
</div>
<div class="footer-content">
<h5>About Us</h5>
<ul>
<li><a href="#">Column2</a></li>
<li><a href="#">Column2</a></li>
<li><a href="#">Column2</a></li>
<li><a href="#">Column2</a></li>
</ul>
</div>
<div class="footer-content">
<h5>Help</h5>
<ul>
<li><a href="#">Column3</a></li>
<li><a href="#">Column3</a></li>
<li><a href="#">Column3</a></li>
<li><a href="#">Column3</a></li>
</ul>
</div>
<div class="footer-content">
<h5>Follow Us!</h5>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore.</p>
</div>
</div>
<hr/>
<div class="copyright">
<div>©Venia Stores 2023</div>
<div><p>© Company Name Address Ave, City Name, State ZIP</p></div>
<div>
<a href="#">Terms of use</a>
<a href="#">Privacy Policy</a>
</div>
</div>
<!--<script src="./resources/js/plp-script.js"></script> -->
</footer>
</body>
</html>