Where can I edit/see the HTML of this WordPress free theme?

You need to understand/learn how WP generates pages. It is all done through template files, which are files that contain the PHP and HTML code to generate the HTML. There are no HTML pages (basically) that are used by WP themes. There are templates that query the database and produce HTML output according to the code in the template.

Start by looking here https://developer.wordpress.org/themes/basics/template-files/ , which is also the tutorial for how themes are built and work.

Understanding how templates work to display pages is an important part of learning how WP works.