Have you wanted to make your own personal web site well this is the right place to begin!

First create a table and fill it with some details.
<table border="1">
    <tr>
        <td>
            <img width="100px" src="dave.jpeg">
            <br>
            Dave Harvey
        </td>
        <td>
            Hi there, I'm Dave creator of this wonderfull site your on right now! I love html and php.
        </td>
    </tr>
</table>

Dave Harvey
Hi there, I'm Dave creator of this wonderfull site your on right now! I love html and php.

Have some hot news? Use a Marquee to draw atention to it!
<marquee>My Social Security Number is 518-95-4326</marquee>
My Social Security Number is 518-95-4326

Are you bored? Play some music! Upload an mp3 to your site then use the audio tag to play it.
<audio controls>
  <source src="badapple.mp3" type="audio/mp3">
</audio> 



Then to link to another page we can use the "a" tag!
<a href="full.html">Let's put this all together!</a>
Let's put this all together!