Look dude, use geocities or another free host - though not the best, it's a start. Also, use this basic framework to create your site:
code:
<html>
<head>
<title> WEBSITE TITLE HERE </title>
</head>
<body bgcolor="black">
<img src="images/image.jpeg">
Use this area for text and things, use the img src code where images are needed, and use the table code for tables (below) (tr = table row, td = table cell). Use the <font face="arial" size="4" color="red"> TEXT HERE </font> code to change fonts and use the <b> BOLD </b> and <i> ITALICS </i> codes where needed.
<table>
<tr>
<td>
1
</td>
</tr>
<tr>
<td>
2
</td>
</tr>
</table>
</body>
</html>
and that's basic HTML code.