If your server supports php:
PHP Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>
Sample
</title>
</head>
<body>
<?php
//change filename to your own
include('awesome_logo.txt');
?>
<!--Rest of your website here-->
</body>
</html>
You're going to have to save this page as *.php. also, your text logo can be a *.txt file because when the server includes it into your file, it will render it as HTML.
Hope I could help,
Micah
|