How insert a DIV at top of current theme? [closed]

As I can see in wp-primer-theme sources: there are do_action( 'primer_body' ); on the top of content and do_action( 'primer_before_header' ); just below.

You can update your child theme functions.php with your own action

add_action('primer_before_header', function() {
  echo '<div class="logo"></div>';
});