Hi @Sharmilshah
Here is an image of how you should build it, in the compose you should place your HTML
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi Página con Título y Gráfico</title>
</head>
<body>
<h1>Mi Página Web en HTML</h1>
<p>¡Bienvenido! Esta es una página de ejemplo con un título y un gráfico.</p>
<!-- Aquí puedes agregar más contenido, como texto, imágenes o enlaces -->
<!-- Ejemplo de un gráfico (puedes usar una librería como Chart.js o D3.js) -->
<div id="grafico" style="width: 400px; height: 300px;"></div>
<script>
// Aquí puedes agregar tu código para generar el gráfico
// Por ejemplo, usando Chart.js:
const ctx = document.getElementById('grafico').getContext('2d');
new Chart(ctx, {
type: 'bar',
data: {
labels: ['Enero', 'Febrero', 'Marzo', 'Abril'],
datasets: [{
label: 'Ventas',
data: [120, 150, 100, 180],
backgroundColor: 'rgba(75, 192, 192, 0.6)',
borderColor: 'rgba(75, 192, 192, 1)',
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
</body>
</html>
You must replace your dynamic values obtained from Power Apps

If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.
You can accept more than one post as a solution
Follow me on Linkedin, I talk about Power Platform
www.linkedin.com/in/jonathan-manrique-rios