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