Is there a way to have the browser display a given HTML page by pasting the HTML code into the address bar and then typing Enter?
Browser is Google Chrome. Unfortunately, if I paste the HTML and then hit enter, it redirects to the Google search site… which is not what I want!
I want to paste the HTML code, such as <html><body>…</body></html>
Another option I thought about is to paste something like
javascript:document.write(‘<html><body>…</body></html>’);
but that appends the HTML to the current page, while I want to reset the page contents instead.
You can use
data:text/html,an example:Other examples of data URLs: https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs