fineweb-c-dashboard / index.html
davanstrien's picture
davanstrien HF staff
Update index.html
4e9f3ae verified
raw
history blame
1.69 kB
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Embedded iframes Demo</title>
<style>
body {
font-family: system-ui, -apple-system, sans-serif;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background-color: #f5f5f5;
}
.container {
display: flex;
flex-direction: column;
gap: 20px;
}
.iframe-wrapper {
background: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
margin-bottom: 30px;
}
</style>
</head>
<body>
<h1>Embedded Datasets</h1>
<div class="container">
<div class="iframe-wrapper">
<iframe
src="https://huggingface.co/datasets/davanstrien/progress/embed/sql-console/NbscKj4"
frameborder="0"
width="100%"
height="560px">
</iframe>
</div>
<div class="iframe-wrapper">
<iframe
src="https://huggingface.co/datasets/davanstrien/progress/embed/sql-console/5Bhx9Ck"
frameborder="0"
width="100%"
height="560px">
</iframe>
</div>
</div>
</body>
</html>