Use on the webTotal Use [ 3664 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/ccf1d06dc7b1bce234fdda6a4fdcecaf?family=Corpo_Serif+W00+Regular" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/ccf1d06dc7b1bce234fdda6a4fdcecaf?family=Corpo_Serif+W00+Regular); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "Corpo_Serif W00 Regular";
    src: url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.eot");
    src: url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/ccf1d06dc7b1bce234fdda6a4fdcecaf.svg#Corpo_Serif W00 Regular")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "Corpo_Serif W00 Regular";