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