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