<html>
<!-- this is prefs-demo.php -->
<head><title>Front Door</title></head>
<?php
  $bg 
$_COOKIE['bg'];
  
$fg $_COOKIE['fg'];
?>

<body style="background-color:<?= $bg ?>; color: <?=  $fg ?>">

<!-- <body bgcolor="<?= $bg ?>" text="<?= $fg ?>"> -->

<h1>Welcome to the Store</h1>
We have many fine products for you to view.  Please feel free to browse
the aisles and stop an assistant at any time.  But remember, you break it
you bought it!<p>
Would you like to <a href="prefs.html">change your preferences?</a>
</body>
</html>