I want to output two HTML documents, wrapped inside of an HTML document
Is it possible to do something like this with HTML?
<html>
<head></head>
<body>
<frameset>
<frame>
<html>
<head></head>
<body>First page here</body>
</html>
</frame>
<frame>
<html>
<head></head>
<body>Second page here</body>
</html>
</frame>
</body>
</html>
It doesn't have to be frames, but I only want to hit the server once, so linking to a document with src attribute is out, it has to be inline.