What does this mean in wordpress? Easy question

It’s the text domain, used for translation. When you run something like this:

<?php _e( 'Hello World', 'html5blank' ) ?>

…WordPress will attempt to find the translated string in the loaded MO file for HTML5 Blank:

load_theme_textdomain( 'html5blank', 'path/to/language.mo' );