blogger Header con radius abajo. html y css




Codigo html para crear el header o div:

<div class="header">
  <h1>Header</h1>
  <p>Mi texto y mas texto y mas texto</p>
</div>

style="color:#ffffff;" dentro de <h3> quedaria asi: <h3 style="color:Navy;">titulo</h3>)


Codigo css para el diseno: codigo css: Va antes de: ]]></b:skin> en plantilla.

/* Header/Logo Title */
.header {
  padding: 60px;
  text-align: center;
  background: linear-gradient(#ff9d2f, #ff6126);
  color: white;
  font-size: 30px;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;
}

Nota: color: white; pueden cambiarlo por color:#333333; y etc.