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