Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Hugging Face Spaces Links</title> | |
<style> | |
body { | |
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
line-height: 1.6; | |
} | |
h1 { | |
color: #4a4a4a; | |
margin-bottom: 20px; | |
} | |
.link-container { | |
margin-bottom: 15px; | |
padding: 15px; | |
border-radius: 8px; | |
background-color: #f7f7f7; | |
transition: background-color 0.2s; | |
} | |
.link-container:hover { | |
background-color: #e9e9e9; | |
} | |
a { | |
color: #1a73e8; | |
text-decoration: none; | |
font-weight: 500; | |
font-size: 18px; | |
display: block; | |
} | |
a:hover { | |
text-decoration: underline; | |
} | |
.description { | |
color: #666; | |
margin-top: 5px; | |
font-size: 14px; | |
} | |
.open-all-button { | |
display: block; | |
margin: 20px auto; | |
padding: 12px 24px; | |
background-color: #4285f4; | |
color: white; | |
border: none; | |
border-radius: 4px; | |
font-size: 16px; | |
font-weight: bold; | |
cursor: pointer; | |
transition: background-color 0.3s; | |
} | |
.open-all-button:hover { | |
background-color: #3367d6; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Hugging Face Spaces Links</h1> | |
<button class="open-all-button" id="openAllLinks">Open All Links in New Tabs</button> | |
<div class="link-container"> | |
<a href="https://huggingface.co/spaces/fantaxy/Space-Leaderboard" target="_blank">Space-Leaderboard</a> | |
<div class="description">Leaderboard for Hugging Face Spaces</div> | |
</div> | |
<div class="link-container"> | |
<a href="https://huggingface.co/spaces/fantaxy/handspew-PLUS" target="_blank">handspew-PLUS</a> | |
<div class="description">Enhanced handwriting generation tools</div> | |
</div> | |
<div class="link-container"> | |
<a href="https://huggingface.co/spaces/fantaxy/SonicOrbit-MAX" target="_blank">SonicOrbit-MAX</a> | |
<div class="description">Advanced audio generation and manipulation</div> | |
</div> | |
<div class="link-container"> | |
<a href="https://huggingface.co/spaces/fantaxy/Datasets-Convertors" target="_blank">Datasets-Convertors</a> | |
<div class="description">Tools for converting between different dataset formats</div> | |
</div> | |
<div class="link-container"> | |
<a href="https://huggingface.co/spaces/fantaxy/Travel-Agent?logs=container" target="_blank">Travel-Agent</a> | |
<div class="description">AI travel planning assistant with container logs</div> | |
</div> | |
<script> | |
// Function to open all links in new tabs | |
document.getElementById('openAllLinks').addEventListener('click', function() { | |
const links = [ | |
"https://huggingface.co/spaces/fantaxy/Space-Leaderboard", | |
"https://huggingface.co/spaces/fantaxy/handspew-PLUS", | |
"https://huggingface.co/spaces/fantaxy/SonicOrbit-MAX", | |
"https://huggingface.co/spaces/fantaxy/Datasets-Convertors", | |
"https://huggingface.co/spaces/fantaxy/Travel-Agent?logs=container" | |
]; | |
links.forEach(link => { | |
window.open(link, '_blank'); | |
}); | |
}); | |
</script> | |
</body> | |
</html> |