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