-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcutestuff.html
101 lines (80 loc) · 2.36 KB
/
cutestuff.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cute Stuffed - EasyShop.com</title>
<style>
body {
font-family: 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
h1, h2, h3 {
color: #333;
}
.product-details {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.product-image {
width: 300px;
height: 300px; /* Set your preferred height */
background-size: cover;
background-position: center;
margin-right: 20px;
}
.product-info {
flex: 1;
}
.description {
margin-bottom: 20px;
}
.price {
font-size: 1.2em;
color: #ffcc00;
margin-bottom: 10px;
}
.availability {
color: #4CAF50;
font-weight: bold;
margin-bottom: 10px;
}
.buy-now-button {
padding: 10px;
background-color: #333;
color: #fff;
text-decoration: none;
display: inline-block;
border-radius: 5px;
transition: background-color 0.3s;
}
.buy-now-button:hover {
background-color: #555;
}
</style>
</head>
<body>
<div class="container">
<h1>Cute Stuffed</h1>
<div class="product-details">
<div class="product-image" style="background-image: url('cute_stuffed_image.jpg');"></div>
<div class="product-info">
<p class="description">Get ready for cuddles with our adorable Cute Stuffed toy. This huggable companion is perfect for all ages and occasions.</p>
<p class="price">Price: ₹800.00</p>
<p class="availability">Availability: <span style="color: #4CAF50;">In Stock</span></p>
<a href="payment.html" class="buy-now-button">Buy Now</a>
</div>
</div>
</div>
</body>
</html>