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