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