DATA l_html TYPE string.
l_html = '<html><body><h1>Hello World!</h1></body></html>'.
cl_abap_browser=>show_html(
EXPORTING
html_string = l_html
title = `cl_abap_browser`
size = cl_abap_browser=>xlarge
).