CoolFace
Apppublic

johnlion85/aaa

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
index.html34 linesDownload Raw Back to root
1<!doctype html>2<html>3	<head>4		<meta charset="utf-8" />5		<meta name="viewport" content="width=device-width, initial-scale=1.0" />6		<title>My static Space</title>7		<style>8			html, body {9				margin: 0;10				padding: 0;11				width: 100%;12				height: 100%;13				overflow: hidden; /* Prevents scrollbars */14			}15			iframe {16				width: 100%;17				height: 100%;18				border: none; /* Replaces frameborder="0" */19			}20			.card {21				display: none; /* Optionally hide the card to show only the iframe */22			}23		</style>24	</head>25	<body>26		<div>27			<iframe28				src="https://nymbo-pong-pygame.static.hf.space"29				width="100%"30				height="100%"31			></iframe>32		</div>33	</body>34</html>