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