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