You need a Home Page.
The easiest way to create a home page, is to find someone else's home page that you like, save a copy of the source, and edit, changing names and images as needed.
Seriously, html is not that difficult to write. Most of the commands come in pairs, e.g.
<HTML> ... </HTML>brackets the entire document, which is made up of (usually) two sections,
<TITLE> ... </TITLE> <BODY> ... </BODY>Other inportant tags include
<H1>...</H1> for largest headings, <H2>...</H2> for somewhat smailer, etc. <UL>...</UL> to bracket indented lists, <LI> to indicate list elements. <P> for a blank line, or paragraph break. <PRE>...</PRE> to bracket pre-formatted text (like tables).
I suggest you look at the sources of these pages to get some understanding of how this all works.