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