Is it possible to send html code via a url and display the parameter containing the html code as HTML where the parameter is received?
I.E. <a href='./displayHtml.php?description=<strong>Title</strong><table>...</table>'>Send Html</a>
There is nothing (by default — XSS filters might not like it) stopping you including characters that have special meaning inside a URL. However:
$_GETSuch:
<?php
    $description = htmlspecialchars(
        urlencode(
            "<strong>Title</strong>etc etc"
        )
    );
?>
<a href="./displayHtml.php?description=<?=$description?>">
Make sure you implement suitable defences against XSS attacks before injecting user input (e.g. anything you read from $_GET) into HTML documents though.