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