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