cards/public/spawnclients.html

33 lines
671 B
HTML
Raw Normal View History

2024-04-30 02:58:29 -04:00
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<title>Cards For Humanity Test Clients</title>
2024-05-03 21:12:23 -04:00
<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>
2024-04-30 02:58:29 -04:00
</head>
2024-05-03 21:12:23 -04:00
<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>
2024-04-30 02:58:29 -04:00
</body>
</html>