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