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