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