Brother TN-328Y
Compatible Brother Toner Cartridge - Reference: TONER TN-328Y.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; font-family: Arial, sans-serif; }
.savings-box {
border: 2px solid #4a9e4a;
border-radius: 6px;
padding: 16px 20px;
max-width: 780px;
background: #fff;
}
.savings-title {
color: #3a8a3a;
font-size: 16px;
font-weight: bold;
border-bottom: 1px solid #4a9e4a;
padding-bottom: 10px;
margin-bottom: 10px;
}
.savings-subtitle {
font-size: 13px;
color: #333;
margin-bottom: 14px;
}
.savings-subtitle strong { font-weight: bold; }
.product-row {
display: flex;
align-items: center;
gap: 14px;
padding: 10px 0;
border-top: 1px solid #eee;
}
.product-row:first-of-type { border-top: none; }
.product-img {
width: 80px;
height: 80px;
object-fit: contain;
flex-shrink: 0;
border: 1px solid #ddd;
border-radius: 4px;
padding: 4px;
background: #fafafa;
}
.product-info { flex: 1; }
.product-name {
font-size: 13px;
color: #222;
margin-bottom: 4px;
line-height: 1.4;
}
.product-price {
font-size: 14px;
font-weight: bold;
color: #3a8a3a;
}
.per-page-block {
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;
}
.per-page-label {
background: #d4e84a;
color: #222;
font-size: 11px;
font-weight: bold;
padding: 3px 10px;
border-radius: 4px 4px 0 0;
text-align: center;
}
.per-page-value {
background: #2e7d2e;
color: #fff;
font-size: 18px;
font-weight: bold;
padding: 6px 14px;
border-radius: 0 0 4px 4px;
text-align: center;
min-width: 90px;
}
.order-btn {
background: #fff;
color: #333;
border: 1px solid #bbb;
border-radius: 4px;
padding: 8px 16px;
font-size: 13px;
cursor: pointer;
flex-shrink: 0;
transition: background 0.2s, border-color 0.2s;
text-decoration: none;
display: inline-block;
}
.order-btn:hover {
background: #f0f0f0;
border-color: #888;
}
@media (max-width: 600px) {
.product-row { flex-wrap: wrap; gap: 10px; }
.product-img { width: 60px; height: 60px; }
.product-info { flex: 1 1 calc(100% - 74px); }
.per-page-block { margin-left: auto; }
}
</style>
</head>
<body>
<div class="savings-box">
<div class="savings-title">Save over 45% on your printing costs</div>
<div class="savings-subtitle">
Save on your printing costs. And print <strong>500 extra pages.</strong>
</div>
<div class="product-row">
<img class="product-img"
src="https://static.wixstatic.com/media/a57af8_0cc32d28b9454ac9b3b9cb2194b42533~mv2.png"
alt="Compatible Toner" />
<div class="product-info">
<div class="product-name">INK SOLUTION compatible replaces Brother TN-321Y toner high capacity</div>
<div class="product-price">€29.99</div>
</div>
<div class="per-page-block">
<div class="per-page-label">Per page</div>
<div class="per-page-value">€0.009</div>
</div>
<a class="order-btn" href="https://www.inksolutions.be/product-page/tn-328y" target="_blank">Order</a>
</div>
</div>
</body>
</html>

