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