Código de tela inicial centralizada, código para ser utilizados em sites novos que ainda estão em desenvolvimento, deixe apenas a logo centralizada.
-
<!DOCTYPE html>
-
<html lang="pt_BR">
-
<head>
-
<meta charset="UTF-8">
-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
-
<title>Meu Site</title>
-
</head>
-
<body>
-
<style>
-
body {
-
display: flex;
-
justify-content: center;
-
align-items: center;
-
min-height: 100vh;
-
margin: 0;
-
background-color: #fff;
-
}
-
-
img {
-
max-width: 100%;
-
}
-
</style>
-
-
<img src="logo.jpg" alt="Meu Ste">
-
</body>
-
</html>