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