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