Forum Moderators: open
I know to make "<>" appear on screen I can use "<a>"
But wow what a pain. Anyone know of a simple way to tell the browser to render straight text and not render it as code?
Thanks All :)
Also, if your server runs PHP you could run your html through the htmlspecialchars() [dk2.php.net] function.
Nick
<link type="text/css" rel="stylesheet" src="/path/file.css">
It is better to use this slightly longer version of this, again placed in the <head> section of the HTML file:
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css">
@import url(path/file.css);
</style>
This version hides the CSS from older versions of Netscape that cannot handle CSS. This stops those versions from displaying a corrupted page with overlapping elements.