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