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