To achieve that, you can add this in your child theme’s functions.php file(wp-content/themes/x-child/functions.php)
function add_newsletter() {
if((is_home() || is_singular('post') ) ){
?>
ADD YOUR FORM HTML CODE HERE
<?php
}
}
add_action( 'x_after_view_integrity__landmark-header', 'add_newsletter', 10 );