- Página Inicial
- Códigos CSS Prontos
- Header Html Estilo Vintage
- Voltar
Header Html Estilo Vintage
O elemento HTML <header> representa um grupo de suporte introdutório ou navegacional. Pode conter alguns elementos de cabeçalho mas também outros elementos como um logo, seções de cabeçalho, formulário de pesquisa, e outros.
Veja neste artigo como criar um Header Html Estilo Vintage personalizado com html css.
Nesta seção, projetaremos uma estrutura simples na tag <header> e a <h2> para inserirmos o titulo.
Essas são as tags que usaremos para criar o nosso Header Estilo Vintage
com css
.
Vamos Adicionar o HTML
<div class="box-header"> <h2 class="the-title">Title Vintage</h2> </div>
Vamos Adicionar o CSS
Nesta seção, usaremos algumas propriedades CSS para estilizar o nosso
.Header Estilo Vintage
com css
Lembrando aqui que usamos a font do google Grand Hotel.
Além disso se você não sabe como inserir font do google no html e css.
Veja detalhado aqui neste outro artigo. Como usar fonts do Google no CSS!
.the-title { position: relative; padding: 0; margin: 0; font-family: 'Grand Hotel', cursive!important; font-weight: 400; font-size: 32px; color: #080808; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } .the-title span { display: block; font-size: 0.5em; line-height: 1.3; } .the-title em { font-style: normal; font-weight: 600; } .box-header { margin-bottom:20px; } .box-header .the-title { position:relative; letter-spacing:0px; width:260px; text-align:center; margin:auto; white-space:nowrap; border:2px solid #222; color: #a26953; border-radius: 50px; padding:5px 10px 5px 10px; } .box-header .the-title:before, .box-header .the-title:after { font-family: 'IcoFont' !important; background-color: transparent; position: absolute; content: ; height: 35px; width: 35px; bottom: 10px; font-size: 25px; line-height: 35px; } .box-header .the-title:before { left:-45px; content: "\eeec"; } .box-header .the-title:after { right:-45px; content: "\f000"; }
Combinando as Duas seções acima com Html e Css temos o seguinte Resultado!
Veja o Resultado baixo!
Baixar Código Veja Funcionando
Publicado por: Loop Nerd
147 Visualizações
Deixe um comentário