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