Spaces:
Runtime error
Runtime error
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Hugging Face App Integration</title> | |
<style> | |
body { | |
margin: 0; | |
padding: 0; | |
background-color: #f5f5f5; | |
font-family: Arial, sans-serif; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} | |
.iframe-container { | |
width: 90%; | |
height: 90%; | |
border: none; | |
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); | |
border-radius: 12px; | |
overflow: hidden; | |
} | |
iframe { | |
width: 100%; | |
height: 100%; | |
border: none; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="iframe-container"> | |
<iframe | |
src="https://huggingface.co/spaces/DHEIVER/pdfchatbot?embed=true" | |
title="Hugging Face App"> | |
</iframe> | |
</div> | |
</body> | |
</html> | |