-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15f.html
More file actions
61 lines (56 loc) · 1.25 KB
/
15f.html
File metadata and controls
61 lines (56 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>15f</title>
<style>
.image {
width: 200px;
object-fit: cover;
object-position: top;
}
.container{
position: relative;
width: 200px;
margin:20px auto;
}
.cart-button {
position: absolute;
background-color: rgba(255,255,255,0.8);
left: 0px;
right: 0px;
height: 80px;
bottom: 0px;
display: flex;
align-items: center;
justify-content: center;
}
.offer {
position: absolute;
background-color: black;
color: white;
font-family: arial;
font-size: 10px;
font-weight: 200;
top: 8px;
right: 0px;
color: rgb(229, 223, 223);
padding: 2px 4px;
}
button {
background-color: rgb(242, 237, 237);
font-size: 12px;
border: 1px solid black;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<img class="image" src="https://shop.mango.com/assets/rcs/pics/static/T7/fotos/S/77050261_44.jpg?imwidth=2048&imdensity=1&ts=1714125889941">
<div class="offer">20% OFF</div>
<div class="cart-button">
<button class="button">Add to Cart</button>
</div>
</div>
</body>
</html>