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