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