File: //home/jibhires/demo.brightsolutionsindia.com/products.php
<?php
$page_title = "Label Solutions";
include 'header.php';
?>
<section class="products py-5">
<div class="container">
<h2 class="text-center mb-5">Specialized Labels</h2>
<div class="row">
<?php
$labels = [
'Polyester Labels' => 'High durability for industrial environments',
'High Temp Labels' => 'Withstand extreme temperature conditions',
'QR Code Labels' => 'Custom printed tracking solutions',
'Thermal Labels' => 'Direct thermal printing compatibility'
];
foreach($labels as $label => $desc): ?>
<div class="col-md-3 mb-4">
<div class="card h-100">
<div class="card-body">
<h5><?php echo $label; ?></h5>
<p><?php echo $desc; ?></p>
</div>
</div>
</div>
<?php endforeach; ?>
</div>
</div>
</section>
<?php include 'footer.php'; ?>