How about, I'm trying to add an html file to a div
<!DOCTYPE html>
<html lang="en">
<head>
<title>Inicio</title>
</head>
<body>
<div> <!-- este div donde agregare un html-->
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
</body>
</html>
where I will add another html with another content type (with tables for example)
what would be the right way to do it?