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