Откройте временную веб -страницу JS

var tempPage = "<html><body><a href='https://google.com.vn'>GOOGLE</a></body></html>";
var w = window.open(''); 
w.document.write(tempPage);
Unsightly Unicorn