xxxxxxxxxx
<html>
<head>
<title>Insert HTML using JavaScript</title>
</head>
<body>
<h1>Javascript Convert String into HTML</h1>
<script>
const htmlString = `<h1>Hello, World!</h1><p>This is a paragraph.</p>`;
document.body.insertAdjacentHTML('beforeend', htmlString);
</script>
</body>
</html>