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