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