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