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