Abaixo, disponibilizamos tutorial para criação de uma página simples de "Site em manutenção" com sua logomarca e dados de contato (e-mail e telefone):
Primeiramente, será preciso configurar o código abaixo em um bloco de notas:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>TÍTULO DO SITE</title>
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
<style>
body{
font-family: 'Titillium Web', sans-serif;
color: #666666;
text-align: center;
}
.box{
background-color: #fff;
width: 500px;
margin: 50px auto;
}
#title {
font-size: 30px;
margin-top: 25px;
}
#descricao{
font-size:20px;
margin: 20px auto;
}
#logo {
margin-top: 25px;
max-width: 365px;
height: auto;
}
#logo-task {
width: 75px;
}
</style>
</head>
<body>
</body>
</html>
|