Mukera / HTML
Seraph19's picture
Create HTML
af0b21e verified
raw
history blame contribute delete
No virus
799 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Space</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
iframe {
width: 80%; /* Adjust the width as needed */
height: 80vh; /* Adjust the height as needed */
border: 1px solid #ccc; /* Optional styling */
}
</style>
</head>
<body>
<iframe src="https://kingnish-opengpt-4o.hf.space"
title="Embedded Hugging Face Space"
frameborder="0">
Your browser does not support iframes.
</iframe>
</body>
</html>