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