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