-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (113 loc) · 6.23 KB
/
index.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
<!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>Single E-commerce Product Page using HTML, CSS - Codingscape</title>
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="shortcut icon" href="/img/bg_white.png" type="image/x-icon">
</head>
<body>
<header>
<div class="logo">
<a href=""><img src="transp_black.png"></a>
</div>
<div class="navigation-links">
<a href="">Shirts</a>
<a href="">T-Shirts</a>
<a href="">Jeans</a>
<a href="">Shorts</a>
<a href="">Shoes</a>
</div>
<div class="cart-n-login">
<a href=""><i class="fa-solid fa-cart-arrow-down" style="color: #000000;"></i></a>
<a href="">Login</a>
<a href="">Register</a>
</div>
</header>
<div class="container">
<div class="single-product">
<div class="row">
<div class="col-6">
<div class="product-image">
<div class="product-image-main">
<img src="tshirt-1.png" alt="" id="product-main-image">
</div>
<div class="product-image-slider">
<img src="tshirt-1.png" alt="" class="image-list">
<img src="tshirt-2.png" alt="" class="image-list">
<img src="tshirt-3.png" alt="" class="image-list">
<img src="tshirt-group.png" alt="" class="image-list">
</div>
</div>
</div>
<div class="col-6">
<div class="breadcrumb">
<span><a href="#">Home</a></span>
<span><a href="#">Product</a></span>
<span class="active">T-shirt</span>
</div>
<div class="product">
<div class="product-title">
<h2>Half Sleve T-shirt for Men</h2>
</div>
<div class="product-rating">
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span><i class="bx bxs-star"></i></span>
<span class="review">(47 Review)</span>
</div>
<div class="product-price">
<span class="offer-price">₹199.00</span>
<span class="sale-price">₹399.00</span>
</div>
<div class="product-details">
<h3>Description</h3>
<p>GOTS Certified 100% Organic Cotton: This t-shirt is made with 100% GOTS certified organic cotton, making it a sustainable and eco-friendly choice. The fabric is breathable and comfortable to wear, and requires minimal maintenance.The fabric is easy to care for and requires minimal maintenance. Machine wash cold and hang to dry.</p>
</div>
<div class="product-size">
<h4>Size</h4>
<div class="size-layout">
<input type="radio" name="size" value="S" id="1" class="size-input">
<label for="1" class="size">S</label>
<input type="radio" name="size" value="M" id="2" class="size-input">
<label for="2" class="size">M</label>
<input type="radio" name="size" value="L" id="3" class="size-input">
<label for="3" class="size">L</label>
<input type="radio" name="size" value="XL" id="4" class="size-input">
<label for="4" class="size">XL</label>
<input type="radio" name="size" value="XXL" id="5" class="size-input">
<label for="5" class="size">XXL</label>
</div>
</div>
<div class="product-color">
<h4>Color</h4>
<div class="color-layout">
<input type="radio" name="color" value="black" class="color-input" id="black">
<label for="black" class="black"></label>
<input type="radio" name="color" value="orange" class="color-input" id="orange">
<label for="orange" class="orange"></label>
<input type="radio" name="color" value="yellow" class="color-input" id="yellow">
<label for="yellow" class="yellow"></label>
</div>
</div>
<span class="divider"></span>
<div class="product-btn-group">
<div class="button buy-now"><i class='bx bxs-zap' ></i> Buy Now</div>
<div class="button add-cart"><i class='bx bxs-cart' onclick="alert('Added to cart sucessfully...')"></i> Add to Cart</div>
<div class="button heart"><i class='bx bxs-heart' ></i> Add to Wishlist</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--script-->
<script src="script.js"></script>
</body>
</html>