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