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