ASKER
ASKER
HTML (HyperText Markup Language) is the main markup language for creating web pages and other information to be displayed in a web browser, providing both the structure and content for what is sent from a web server through the use of tags. The current implementation of the HTML specification is HTML5.
TRUSTED BY
<?php
switch($season)
{
case "summer" :
echo '<link rel="stylesheet" type="text/css" href="summer.css" />';
break;
case "winter" :
echo '<link rel="stylesheet" type="text/css" href="winter.css" />';
break;
case "fall" :
echo '<link rel="stylesheet" type="text/css" href="fall.css" />';
break;
case "spring" :
echo '<link rel="stylesheet" type="text/css" href="spring.css" />';
break;
default :
echo '<link rel="stylesheet" type="text/css" href="summer.css" />';
break;
}
?>