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