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