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