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