function my_custom_html_code() {
// Stop the function if this is not the Home page of website
if ( ! is_home() ) {
return;
}
// Print the custom HTML code
echo '<script>YOUR CUSTOM HTML CODE HERE</script>';
}
add_action( 'wp_head', 'my_custom_html_code' );
My Custom Functions'
);
?>