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