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