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