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