Mudanças entre as edições de "Criar página de "Site em manutenção""

De Task Wiki
Ir para: navegação, pesquisa
Linha 14: Linha 14:
 
[[Arquivo:elipse_1.png]] Primeiramente, será preciso configurar o código abaixo em um bloco de notas:<br>
 
[[Arquivo:elipse_1.png]] Primeiramente, será preciso configurar o código abaixo em um bloco de notas:<br>
  
<code>
+
<code><!DOCTYPE html></code>
<!DOCTYPE html>
+
<code><html lang="en"></code>
<html lang="en">
+
<code><head></code>
<head>
+
<code>  <meta charset="UTF-8"></code>
  <meta charset="UTF-8">
+
<code>  <title>TÍTULO DO SITE</title></code>
  <title>TÍTULO DO SITE</title>
+
<code>  <link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet"></code>
  <link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
+
<code>  <style></code>
  <style>
+
<code>    body{</code>
    body{
+
<code>      font-family: 'Titillium Web', sans-serif;</code>
      font-family: 'Titillium Web', sans-serif;
+
<code>      color: #666666;</code>
      color: #666666;
+
<code>      text-align: center;</code>
      text-align: center;
+
<code>    }</code>
    }
+
<code>    .box{</code>
    .box{
+
<code>      background-color: #fff;</code>
      background-color: #fff;
+
<code>      width: 500px;</code>
      width: 500px;
+
<code>      margin: 50px auto;</code>
      margin: 50px auto;
+
<code>    }</code>
    }
+
<code>    #title {</code>
    #title {
+
<code>      font-size: 30px;</code>
      font-size: 30px;
+
<code>      margin-top: 25px;</code>
      margin-top: 25px;
+
<code>    }</code>
    }
+
<code>    #descricao{</code>
    #descricao{
+
<code>      font-size:20px;</code>
      font-size:20px;
+
<code>      margin: 20px auto;</code>
      margin: 20px auto;
+
<code>    }</code>
    }
+
<code>    #logo {</code>
    #logo {
+
<code>      margin-top: 25px;</code>
      margin-top: 25px;
+
<code>      max-width: 365px;</code>
      max-width: 365px;
+
<code>      height: auto;</code>
      height: auto;
+
<code>    }</code>
    }
 
  
    #logo-task {
+
<code>    #logo-task {</code>
      width: 75px;
+
<code>      width: 75px;</code>
    }
+
<code>    }</code>
  
  </style>
+
<code>  </style></code>
</head>
+
<code></head></code>
<body>
+
<code><body></code>
  <div class="box">
+
<code>  <div class="box"></code>
    <img src="logo.png" id="logo">
+
<code>    <img src="logo.png" id="logo"></code>
    <div id="title">
+
<code>    <div id="title"></code>
      SITE EM MANUTENÇÃO
+
<code>      SITE EM MANUTENÇÃO</code>
    </div>
+
<code>    </div></code>
    <!-- Descrição breve  -->
+
<code>    <!-- Descrição breve  --></code>
    <div id="descricao">
+
<code>    <div id="descricao"></code>
      (99) 99999-9999<br>
+
<code>      (99) 99999-9999<br></code>
      falecom@task.com.br
+
<code>      falecom@task.com.br</code>
    </div>
+
<code>    </div></code>
    <a href="http://task.com.br" target="_blank">
+
<code>    <a href="http://task.com.br" target="_blank"></code>
      <img src="https://www.task.com.br/assets/cabecalho/logo-task.png" id="logo-task">
+
<code>      <img src="https://www.task.com.br/assets/cabecalho/logo-task.png" id="logo-task"></code>
    </a>
+
<code>    </a></code>
  </div>
+
<code>  </div></code>
</body>
+
<code></body></code>
</html>
+
<code></html></code>
</code>
 

Edição das 16h05min de 9 de novembro de 2017

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):

Elipse 1.png 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>

<img src="logo.png" id="logo">

SITE EM MANUTENÇÃO

(99) 99999-9999
falecom@task.com.br

<a href="http://task.com.br" target="_blank"> <img src="https://www.task.com.br/assets/cabecalho/logo-task.png" id="logo-task"> </a>

</body> </html>