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