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