Well, this might get your started. You can save it as a text file (wordpad, notepad++ (free)) named index.html, and edit it to your needs, and upload it to your public_html folder.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Put a title here</title>
<style type="text/css">
<!--
body,td,th {
font-family: Trebuchet MS, Arial;
font-size: 12px;
color: #000000;
}
body {
background-color: #FFFFFF;
}
-->
</style></head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center"><img src="yourlogo.jpg" alt="Logo"/></td>
</tr>
<tr>
<td>Put some text here</td>
</tr>
<tr>
<td align="center">Copyright ©2009 (name or site)</td>
</tr>
</table>
</body>
</html>
In the <img> tag, edit the src="" attribute to the location of your logo. It isn't the best but it's what I came up with in 2 mins.
If you know HTML, Notepad++ is a good, free editor with syntax highlighting, otherwise you can do a Google search for "Free HTML editor". I know NVU was good at one time but I don't know if it is maintained anymore.
Hope that helps, I'm off to eat dinner now.