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