File size: 1,691 Bytes
85d7e36 4e9f3ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
<!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> |