test_iframe / index.html
danhtran8989's picture
Update index.html
e726de0 verified
Raw
History Blame Contribute Delete
3.43 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Google Mood Palette Explorer</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f8fafc;
color: #1e293b;
line-height: 1.6;
}
.container {
max-width: 1400px;
margin: 0 auto;
padding: 2rem;
}
header {
text-align: center;
margin-bottom: 2rem;
padding: 2rem 0;
}
h1 {
color: #6366f1;
font-size: 2.5rem;
margin-bottom: 1rem;
}
.intro {
font-size: 1.1rem;
color: #475569;
max-width: 800px;
margin: 0 auto;
}
.iframe-wrapper {
width: 100%;
height: calc(100vh - 300px);
min-height: 600px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
overflow: hidden;
border: 1px solid #e2e8f0;
}
iframe {
width: 100%;
height: 100%;
border: none;
display: block;
}
footer {
text-align: center;
padding: 2rem 0;
color: #64748b;
font-size: 0.9rem;
}
a {
color: #6366f1;
text-decoration: none;
font-weight: 600;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.container {
padding: 1rem;
}
.iframe-wrapper {
min-height: 500px;
height: calc(100vh - 250px);
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>🎨 Google Mood Palette Explorer</h1>
<p class="intro">
Welcome! This page is your gateway to exploring <strong>Google's Mood Palette</strong> on Hugging Face.
Discover how colors influence emotions and interact with the embedded application below.
This is a great example of how Hugging Face Spaces can be used to host and share interactive AI and creative demos.
</p>
</header>
<div class="iframe-wrapper">
<!-- Use the .hf.space subdomain instead of huggingface.co/spaces/ -->
<iframe
src="https://google-mood-palette.hf.space"
title="Google Mood Palette"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<footer>
<p>Embedded from <a href="https://huggingface.co/spaces/google/mood-palette" target="_blank">huggingface.co/spaces/google/mood-palette</a></p>
<p>Built with ❤️ on Hugging Face Static Spaces</p>
</footer>
</div>
</body>
</html>