47 lines
1.3 KiB
HTML
47 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Exibir Imagens Protegidas</title>
|
|
<style>
|
|
/* Define o fundo da página como preto */
|
|
body {
|
|
background-color: black;
|
|
/* Fundo preto */
|
|
color: white;
|
|
/* Texto branco para melhor contraste */
|
|
}
|
|
|
|
/* Define o fundo de um contêiner específico como preto */
|
|
#logoContainer {
|
|
background-color: black;
|
|
/* Fundo preto */
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* Adiciona algum estilo para as imagens */
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 style="color: white;">Imagens Protegidas com Fundo Preto</h1>
|
|
|
|
<!-- Contêiner com fundo preto onde a imagem será exibida -->
|
|
<div id="logoContainer">
|
|
<img id="profileImage" alt="Imagem de Perfil" width="200px">
|
|
<img id="companyLogo" alt="Logo da Empresa" width="200px">
|
|
</div>
|
|
|
|
<div id="result"></div> <!-- Onde erros serão exibidos -->
|
|
|
|
<script src="../js/tes.js"></script> <!-- O arquivo JS é referenciado aqui -->
|
|
</body>
|
|
|
|
</html> |