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