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