Analyze Your Website with PageSpeed Insights

"; displayProgressBar('First Contentful Paint (FCP)', $fcp, 5, '#388E3C'); displayProgressBar('Largest Contentful Paint (LCP)', $lcp, 5, '#1976D2'); displayProgressBar('Cumulative Layout Shift (CLS)', $cls, 1, '#F57C00'); displayProgressBar('Total Blocking Time (TBT)', $tbt, 1, '#D32F2F'); echo ""; // Prepare data for Chart.js echo ""; echo "
"; } else { echo "

Failed to retrieve PageSpeed Insights metrics. Please try again.

"; } } else { echo "

Invalid URL. Please enter a valid website URL.

"; } } // Function to display a progress bar function displayProgressBar($label, $value, $max, $color) { $percentage = ($value / $max) * 100; echo "
$label
$value seconds
"; } ?>