Use on the webTotal Use [ 4757 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/ff272e0d67c4c0cc6d8323503b7268cd?family=Corpo_Serif+W00+Light_italic" 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/ff272e0d67c4c0cc6d8323503b7268cd?family=Corpo_Serif+W00+Light_italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Corpo_Serif W00 Light_italic";
src: url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.eot");
src: url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/ff272e0d67c4c0cc6d8323503b7268cd.svg#Corpo_Serif W00 Light_italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Corpo_Serif W00 Light_italic";