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