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