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