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