Shefarol Soluções Web

Google Fonts - Voltar

Exemplo do Google fonts

 

Este parágrafo está usando a fonte "Tangerine" do Google

Este parágrafo está usando a fonte "Josefin Sans" do Google

Este parágrafo está usando a fonte "Pacifico" do Google


Adicione a tag do Google Fonts dentro do HEAD
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200&family=Pacifico&family=Tangerine&display=swap" rel="stylesheet">

Chame o CSS dessa forma
.Tangerine{
	font-family: Tangerine, serif;
}
.JosefinSans{
	font-family: 'Josefin Sans', serif;
}
.Pacifico{
	font-family: Pacifico, serif;
}