cards/spawnclients.html
2024-05-03 21:12:23 -04:00

32 lines
671 B
HTML

<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>Cards For Humanity Test Clients</title>
<style>
body, html {
margin: 0;
padding: 0;
background-color: #000;
overflow: hidden;
}
iframe {
width: 49%;
height: 49vh;
border-style: none;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
}
</style>
</head>
<body>
<div id="container">
<iframe src="http://localhost:3030"></iframe>
<iframe src="http://localhost:3030"></iframe>
<iframe src="http://localhost:3030"></iframe>
<iframe src="http://localhost:3030"></iframe>
</div>
</body>
</html>