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