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