<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Homepage</title>
</head>
<body>
    <marquee>My Social Security Number is 518-95-4326!</marquee>
    <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>
        <tr>
            <td colspan="2" align="center">
                Music
            </td>
        </tr>
        <tr>
            <td>
                Bad Apple!!
            </td>
            <td>
                <audio controls>
                    <source src="badapple.mp3" type="audio/mp3">
                </audio>
            </td>
        </tr>
        <tr>
            <td>
                Daisy Bell
            </td>
            <td>
                <audio controls>
                    <source src="daisybell.mp3" type="audio/mp3">
                </audio>
            </td>
        </tr>
    </table>
</body>