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