Add a label to the editor?

I recently used this in one of the projects, so here you go

add_action( 'edit_form_after_title', 'wp692_edit_form_after_title' );

function wp692_edit_form_after_title() {
echo '<h2>This is My Label!</h2>';
}