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