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