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