Ok the baby is not exactly interactive but you get to make it. You will have to get your own script to make it different. For this to work you need to have PHP on your server.
Ok first make an index.html page
`
<html>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>Untitled Document</title>
</head>
<body>
<center>
<table border=“1”>
<tr><td>
<form method=“post” action=“parser.php”>
-What color eyes does your baby have?<br />
<input type=“radio” name=“eye” value=“blue” />Blue<br />
<input type=“radio” name=“eye” value=“green” />Green<br />
<input type=“radio” name=“eye” value=“brown” />Brown<br />
</td></tr>
<tr><td>
-What hair color hair does your baby have?<br />
<input type=“radio” name=“hair” value=“brown” />Brown<br />
<input type=“radio” name=“hair” value=“black” />Black<br />
<input type=“radio” name=“hari” value=“red” />Red<br />
</td></tr>
<tr><td>
-What color skin does your baby have?<br />
<input type=“radio” name=“skin” value=“white” />White<bR />
<input type=“radio” name=“skin” value=“tan” />Tan<br />
<input type=“radio” name=“skin” value=“black” />Black<br />
</td></tr>
<tr><td>
-Where was your baby born?<br />
<input type=“radio” name=“born” value=“Africa” />Africa<br />
<input type=“radio” name=“born” value=“Italy” />Italy<br>
<input type=“radio” name=“born” value=“France” />France<bR />
<center><input type=“submit” value=“submit” /></center>
</form>
</td></tr>
</table>
</center>
</body>
</html>
Then you need to make a php file the name should be parser.php
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“XHTML namespace”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<title>Untitled Document</title>
</head>
<body>
<center>
<table border=“1” style=“border:solid #333333 1px;”>
<tr><td>
<?php
$eye = $_POST[‘eye’];
$hair = $_POST[‘hair’];
$skin = $_POST[‘skin’];
$born = $_POST[‘born’];
$baby = $eye+$hair;
echo "Your baby has " . $skin . " skin, " . $eye . " eyes, " . $hair . " hair and was born in " . $born;
?>
</td></tr>
</table>
</center>
</body>
</html>