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