-
Notifications
You must be signed in to change notification settings - Fork 0
/
Product.html.html
159 lines (133 loc) · 4.92 KB
/
Product.html.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!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>Men's Fashion</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w==" crossorigin="anonymous"
referrerpolicy="no-referrer" />
<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" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-- Top Header -->
<div class="header">
<div class="navbar">
<div class="logo">
<a href="index.html" title="Home">
<img src="images/fashion-logo.png" />
</a>
</div>
</div>
<nav>
<ul>
<li><a href="">Home</a></li>
<li><a href="">Products</a></li>
<li><a href="">About</a></li>
<li><a href="">Contact</a></li>
<li>
<a href="#" title="My Account"><i class="fas fa-user"></i></a>
</li>
<li>
<a href="#" title="Cart"><i class="fas fa-shopping-cart"></i></a>
</li>
</ul>
</nav>
</div>
<!-- Main Body Content -->
<div class="productdetails">
<div class="first-container details">
<div class="first-img">
<img src="images\buy-1.jpg" alt="image" class="picturemanged">
</div>
<div class="first-img">
<p>home/t-shirt</p>
<h4> $50.00</h4>
<select class="ss" name="Selection">
<option value="Select Size"> Select Size</option>
<option value="XXL">XXL</option>
<option value="XL">XL</option>
<optionL value="L">L</option>
<option value="M">M</option>
<option value="S">S</option>
</select>
<input type="Selection" name="Number" value="1">
<a href="#" class="btn">Add to cart</a>
<h3>Product details</h3>
<p>The most comfortable and warm clothes that protect from the hot weather.
The relaible and cheaper with great customer satisfaction.</p>
</div>
</div>
<div class="second-container details">
<div class="first-img">
<img src="images\category-2.jpg" alt="image" class="picturemanged">
</div>
<div class="first-img">
<p>Superstar Shoes</p>
<h4> $59.99</h4>
<select class="ss" name="Selection">
<option value="Select Size"> Select Size</option>
<option value="XXL">XXL</option>
<option value="XL">XL</option>
<optionL value="L">L</option>
<option value="M">M</option>
<option value="S">S</option>
</select>
<input type="Selection" name="Number" value="1">
<a href="#" class="btn">Add to cart</a>
</div>
</div>
</div>
</div>
<div class="container-fluid px-1 py-5 mx-auto row justify-content-center">
<div class="col-xl-9 col-lg-10 ">
<div class="card1 pl-4 pl-md-5 pr-3">
<div class="row">
<div class="left-side col-md-6">
<p class="pt-5 mb-0">Has just arrived!</p>
<h3 class="mb-0"><strong>Summer Collection 2022</strong></h3> <small class="">Footwear, Bags, Sunglasses, Caps & much more.</small><br> <button class="btn btn-pink mb-5">Shop Now <div class="fa fa-angle-right"></div></button>
</div>
<div class="right-side col-md-6 row justify-content-center">
<div class="d-flex"> <img class="images\category-3.jpg" src="images\category-3.jpg" </div>
</div>
</div>
</div>
</div>
</div>
<!-- FOOTER -->
<footer>
<div class="footer-container">
<div class="row">
<div class="col-4">
<div class="about">
<img src="images/fashion-logo2.png" />
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Fugiat
sit culpa sunt et sapiente fugit! Harum totam excepturi quos
dolorum veritatis at aut inventore illum adipisci consequatur,
quisquam architecto est!
</p>
</div>
</div>
<div class="col-4">
<h3>Links</h3>
<ul>
<li><a href="">My Acoount</a></li>
<li><a href="">Terms and COnditions</a></li>
<li><a href="">FAQs</a></li>
<li><a href="">REfund Policy</a></li>
</ul>
</div>
<div class="col-4"></div>
<div class="col-4"></div>
</div>
<div class="copyright">
<p>© All rights reserved, 2022.</p>
</div>
</div>
</footer>
</body>
</html>