-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvd12.html
More file actions
99 lines (84 loc) · 2.88 KB
/
Copy pathvd12.html
File metadata and controls
99 lines (84 loc) · 2.88 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rental Fashion</title>
<link rel="stylesheet" href="../Dharohar/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css"
integrity="sha384-tViUnnbYAV00FLIhhi3v/dWt3Jxw4gZQcNoSCxCIFNJVCx7/D55/wXsrNIRANwdD" crossorigin="anonymous">
<style>
body {
background-color: #f8f9fa;
font-family: Arial, sans-serif;
}
/* header {
background: linear-gradient(90deg, rgba(0, 123, 255, 1) 0%, rgba(0, 123, 255, 0.8) 100%);
} */
.details {
margin-left: 20px;
background-color: #ffffff;
border-radius: 8px;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.fade-in {
animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.btn-add,.btn-buy {
transition: background-color 0.3s, transform 0.3s;
}
.btn-add,.btn-buy:hover {
background-color: #0056b3;
transform: scale(1.05);
}
img {
border-radius: 8px;
margin-bottom: 20px;
}
a{
}
footer {
text-align: center;
padding: 20px;
background-color: #343a40;
color: white;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<section id="sarees" class="container py-4 fade-in">
<div class="d-flex align-items-start">
<img src="./Images/2_4f80a4aa-e37c-4673-8a99-468903105aab_360x.webp" height="300" alt="Saree 1">
<div class="details">
<h3>Saree</h3>
<p>Price: ₹13,000</p>
<p>Size: One Size</p>
<p>Color: Pink</p>
<p>A beautiful pink saree is perfect for weddings and festive occasions.</p>
<a href="Payment.html">
<button class="btn btn-primary btn-buy" onclick="buyNow()">Buy Now</button>
</a>
<a href="Payment.html">
<button class="btn btn-dark btn-rent" onclick="rentNow()">Add to Cart</button></a>
</div>
</div>
</section>
<footer>
<p>© 2023 Rental Fashion. All rights reserved.</p>
</footer>
</body>
</html>