Relatório Power BI Integrado
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Relatório Power BI no Site</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
background: white;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}
h1 {
color: #333;
text-align: center;
}
.powerbi-embed {
width: 100%;
height: 600px;
border: none;
margin-top: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<h1>Relatório Power BI Integrado</h1>
<iframe
class="powerbi-embed"
src="https://app.powerbi.com/view?r=eyJrIjoiOGU5OWZlYWUtMDVkOC00NWJlLTlhNjgtNTFjMDYzODUxYTRlIiwidCI6Ijg1OGUzNDc3LTVmZDgtNGU2MS05MTIwLTRiY2ZmY2JmYjY1NyJ9"
frameborder="0"
allowfullscreen>
</iframe>
</div>
</body>
</html>