How to display html code on homepage

if you are just trying to put HTML inside PHP, just close PHP and wrap with HTML

<?php if ( is_front_page() ) { ?>
    <div>
        HTML Code
    </div>
<?php } ?>

And use is_front_page