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