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