Can I import/render a HTML file inside other HTML file?
Main file:
<html>
<body>
<div><!-- render other HTML file here --></div>
</body>
</html>
Render file:
<h1>Testing</h1>
Final expected result:
<html>
<body>
<div><h1>Testing</h1></div>
</body>
</html>