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