Copy this code and paste it in your HTML
<?php
// Small PHP script that displays a random design of CSS Zen Garden
if ( strlen($rand) == 1 ) { $rand = "00" . $rand;
} elseif ( strlen($rand) == 2 ) { $rand = "0" . $rand;
} header("Location: http://www.csszengarden.com/?cssfile=/$rand/$rand.css");
?>