<!DOCTYPE html>
<html lang=”pt-BR”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Página com Cabeçalho e iFrame</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
header {
background-color: #4CAF50;
color: white;
padding: 15px;
text-align: center;
}
iframe {
width: 100%;
height: calc(100vh – 70px); /* Ajuste conforme a altura do seu cabeçalho */
border: none;
}
</style>
</head>
<body>

<header>
<h1>Meu Cabeçalho Fixo</h1>
<!– Aqui você pode adicionar mais elementos, como menus ou botões –>
</header>

<iframe src=”https://evoluta.mindz.com.br/ead/account/login/” title=”Evoluta Login”></iframe>

</body>
</html>