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