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