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