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