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