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