@YousefCompSci

<!DOCTYPE html>

<hmtl>
    <head>
        <title>
          My first website  
        </title>
        <!-- This is a comment -->
    </head>
    <body>
        <a href="https://www.google.com" target=_blank title= GoToGoogle>
            <h1>Google</h1> 
        </a>


        <a href="https://www.youtube.com/channel/UCZFo05Ulw9S2zAR9QnLeYDg" target=_self>
        <img src="/Images/img.jpg" height="300" alt="This is a fortnite picture" title="picture">
        </a>

        <audio controls autoplay muted loop>
            <source src="Lawrence - TrackTribe.mp3">
            <source src="Lawrence - TrackTribe.wav">
            This browser does not support HTML5 audio
        </audio>

        <video controls autoplay muted loop>
            <source src="Meow Sound Effect.mp4">
        </video>

        <p>This is normal text </p>
        <p>This is <b> bold </b> text </p>
        <p>This is <i> italic </i> text </p>
        <p>This is <Big> Big </Big> text </p>
        <p>This is <small> small </small> text </p>
        <p>This is <sub> subscript </sub> text </p>
        <p>This is <sup> superscript </sup> text </p>
        <p>This is <ins> inserted or underlined </ins> text </p>
        <p>This is <del> deleted or strikethrough </del> text </p>
        <p>This is <mark> marked or highlighted </mark> text </p>
        
       

    </body>
</hmtl>