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