Loads multiple AI chat interfaces in a browser
by Chris
HTML
<!DOCTYPE html>
<!-- <meta viewport> -->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Multi-LLM Browser</title>
<style>
html,
body {
margin: 0;
height: 100%;
display: flex;
flex-direction: row;
}
iframe {
flex: 1;
border: none;
}
</style>
</head>
<body>
<iframe src="https://chat.openai.com/" title="ChatGPT"></iframe>
<iframe src="https://chat.x.ai/" title="xAI (Grok)"></iframe>
<iframe src="https://gemini.google.com/" title="Gemini"></iframe>
</body>
</html>
JavaScript
window.open('_BLANK', 'https://chat.openai.com/')